From 6288312c01fbd982229b6d5a463b65cae8db5863 Mon Sep 17 00:00:00 2001 From: TekH Date: Sun, 3 Aug 2025 12:29:57 +0200 Subject: [PATCH] feat(ObjectStateDto): add TfFiles property --- src/WorkFlow.Application/Dto/ObjectStateDto.cs | 2 ++ src/WorkFlow.Application/Dto/TfFileDto.cs | 5 +---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/WorkFlow.Application/Dto/ObjectStateDto.cs b/src/WorkFlow.Application/Dto/ObjectStateDto.cs index 61f3ce2..afdc003 100644 --- a/src/WorkFlow.Application/Dto/ObjectStateDto.cs +++ b/src/WorkFlow.Application/Dto/ObjectStateDto.cs @@ -10,4 +10,6 @@ public record ObjectStateDto public IEnumerable Others { get; set; } = Array.Empty(); public virtual IEnumerable? TFControls { get; set; } + + public virtual IEnumerable? TfFiles { get; set; } } \ No newline at end of file diff --git a/src/WorkFlow.Application/Dto/TfFileDto.cs b/src/WorkFlow.Application/Dto/TfFileDto.cs index f60f304..4c1aac0 100644 --- a/src/WorkFlow.Application/Dto/TfFileDto.cs +++ b/src/WorkFlow.Application/Dto/TfFileDto.cs @@ -1,7 +1,4 @@ -using System.Text.Json.Serialization; -using System.Web; - -namespace WorkFlow.Application.Dto; +namespace WorkFlow.Application.Dto; public class TfFileDto {