17 lines
542 B
C#
17 lines
542 B
C#
namespace WorkFlow.Application.Dto;
|
|
|
|
public class ObjectDto
|
|
{
|
|
public IEnumerable<string> Headlines { get; set; } = Array.Empty<string>();
|
|
|
|
public IEnumerable<string> Sublines { get; set; } = Array.Empty<string>();
|
|
|
|
public string? CmdCheckIn { get; set; }
|
|
|
|
public ObjectStateDto? State { get; set; }
|
|
|
|
public IEnumerable<ObjectStateHistDto> StateHistories { get; set; } = Array.Empty<ObjectStateHistDto>();
|
|
|
|
public IEnumerable<PControlsUpdateDto>? ControlsUpdates { get; set; } = Array.Empty<PControlsUpdateDto>();
|
|
}
|