namespace EnvelopeGenerator.Application.Common.Dto; /// /// /// public record EnvelopeReportDto { /// /// /// public int EnvelopeId { get; set; } // --- HEAD --- /// /// /// public string HeadUuid { get; set; } = null!; /// /// /// public string EnvelopeTitle { get; set; } = string.Empty; /// /// /// public string HeadMessage { get; set; } = null!; // --- POSITIONS --- /// /// /// public int ItemStatus { get; set; } /// /// /// public DateTime? ItemDate { get; set; } /// /// /// public string ItemUserReference { get; set; } = null!; }