feat(ObjectStateDto): add TfFiles property

This commit is contained in:
tekh 2025-08-03 12:29:57 +02:00
parent 91679180ec
commit 6288312c01
2 changed files with 3 additions and 4 deletions

View File

@ -10,4 +10,6 @@ public record ObjectStateDto
public IEnumerable<string> Others { get; set; } = Array.Empty<string>();
public virtual IEnumerable<PControlsTFDto>? TFControls { get; set; }
public virtual IEnumerable<TfFileDto>? TfFiles { get; set; }
}

View File

@ -1,7 +1,4 @@
using System.Text.Json.Serialization;
using System.Web;
namespace WorkFlow.Application.Dto;
namespace WorkFlow.Application.Dto;
public class TfFileDto
{