From cde9ed06a11b4843b4cc5f1d8f608c0600b421c8 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Tue, 11 Nov 2025 17:32:52 +0100 Subject: [PATCH] create EnvelopeReportDto --- .../Common/Dto/EnvelopeReportDto.cs | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 EnvelopeGenerator.Application/Common/Dto/EnvelopeReportDto.cs diff --git a/EnvelopeGenerator.Application/Common/Dto/EnvelopeReportDto.cs b/EnvelopeGenerator.Application/Common/Dto/EnvelopeReportDto.cs new file mode 100644 index 00000000..c9fd0b82 --- /dev/null +++ b/EnvelopeGenerator.Application/Common/Dto/EnvelopeReportDto.cs @@ -0,0 +1,44 @@ +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!; +} \ No newline at end of file