From 4e5cb91967d54b119b2a40e36d60e7e68dc130f7 Mon Sep 17 00:00:00 2001 From: TekH Date: Fri, 1 Aug 2025 21:32:04 +0200 Subject: [PATCH] feat(TfFile): create dto --- src/WorkFlow.Application/Dto/TfFileDto.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/WorkFlow.Application/Dto/TfFileDto.cs diff --git a/src/WorkFlow.Application/Dto/TfFileDto.cs b/src/WorkFlow.Application/Dto/TfFileDto.cs new file mode 100644 index 0000000..c13736e --- /dev/null +++ b/src/WorkFlow.Application/Dto/TfFileDto.cs @@ -0,0 +1,14 @@ +namespace WorkFlow.Application.Dto; + +public class TfFileDto +{ + public string FFapth { get; set; } = null!; + + public string? Headline { get; set; } + + public string? Subline { get; set; } + + public string? Comment { get; set; } + + public string? Icon { get; set; } +} \ No newline at end of file