refactor(Profil): dto in den Ordner DTO verschieben.

- Ordner DTO in Dto umbenennen
This commit is contained in:
2025-07-30 13:21:18 +02:00
parent 6c0f39e3ed
commit 904536bd09
36 changed files with 120 additions and 224 deletions

View File

@@ -0,0 +1,25 @@
using WorkFlow.Application.Buttons;
using WorkFlow.Application.Objects;
namespace WorkFlow.Application.Dto;
public class ProfileDto
{
public int? Id { get; init; }
public byte? TypeId { get; init; }
public string? Caption { get; init; }
public string? Subtitle { get; init; }
public int? CountObj { get; init; }
public string? ForeColor { get; init; }
public string? BackColor { get; init; }
public IEnumerable<ObjectDto> Objects { get; init; } = Array.Empty<ObjectDto>();
public IEnumerable<ButtonDto>? Buttons { get; set; } = Array.Empty<ButtonDto>();
}