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