namespace WorkFlow.Application.Dto; public class ObjectDto { public long? ObjStateId { get; set; } public long? Id { get; set; } public IEnumerable Headlines { get; set; } = Array.Empty(); public IEnumerable Sublines { get; set; } = Array.Empty(); public string? CmdCheckIn { get; set; } }