diff --git a/EnvelopeGenerator.Application/DocStatus/Commands/CreateDocStatusCommand.cs b/EnvelopeGenerator.Application/DocStatus/Commands/CreateDocStatusCommand.cs
index 01b5d0a9..e8f78240 100644
--- a/EnvelopeGenerator.Application/DocStatus/Commands/CreateDocStatusCommand.cs
+++ b/EnvelopeGenerator.Application/DocStatus/Commands/CreateDocStatusCommand.cs
@@ -8,12 +8,22 @@ namespace EnvelopeGenerator.Application.DocStatus.Commands;
///
///
///
-public record CreateDocStatusCommand : ModifyDocStatusCommandBase, IRequest
+public record CreateDocStatusCommand : IRequest
{
///
- /// Gets timestamp when this record was added. Returns the StatusChangedWhen value.
+ ///
///
- public DateTime AddedWhen => StatusChangedWhen;
+ public int EnvelopeId { get; set; }
+
+ ///
+ ///
+ ///
+ public int ReceiverId { get; set; }
+
+ ///
+ /// Gets or sets the display value associated with the status.
+ ///
+ public string? Value { get; set; }
}
///