Coverage for src/app/dto/file_dto.py: 100%
8 statements
« prev ^ index » next coverage.py v7.7.0, created at 2025-04-03 00:42 +0200
« prev ^ index » next coverage.py v7.7.0, created at 2025-04-03 00:42 +0200
1class FileDTO:
2 def __init__(self, file_name: str, file_content: str):
3 self.file_name = file_name
4 self.file_content = file_content
6 def get_file_name(self) -> str:
7 return self.file_name
9 def get_file_content(self) -> str:
10 return self.file_content