24 lines
568 B
C#
24 lines
568 B
C#
using WorkFlow.Application.Buttons;
|
|
|
|
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>();
|
|
} |