diff --git a/EnvelopeGenerator.Application/DocStatus/Commands/ModifyDocStatusCommandBase.cs b/EnvelopeGenerator.Application/DocStatus/Commands/ModifyDocStatusCommandBase.cs
index 259cb500..683e57e8 100644
--- a/EnvelopeGenerator.Application/DocStatus/Commands/ModifyDocStatusCommandBase.cs
+++ b/EnvelopeGenerator.Application/DocStatus/Commands/ModifyDocStatusCommandBase.cs
@@ -1,5 +1,4 @@
using EnvelopeGenerator.Application.Common.Query;
-using EnvelopeGenerator.Domain.Constants;
namespace EnvelopeGenerator.Application.DocStatus.Commands;
@@ -11,32 +10,17 @@ public record ModifyDocStatusCommandBase : EnvelopeReceiverQueryBase
///
///
///
- public int? EnvelopeId => Envelope.Id;
+ public virtual int EnvelopeId { get; set; }
///
///
///
- public int? ReceiverId => Receiver.Id;
-
- ///
- ///
- ///
- public override ReceiverQueryBase Receiver { get => base.Receiver; set => base.Receiver = value; }
-
- ///
- /// Gets the current status code.
- ///
- public DocumentStatus Status => Value is null ? DocumentStatus.Created : DocumentStatus.Signed;
+ public virtual int ReceiverId { get; set; }
///
/// Gets or sets the display value associated with the status.
///
- public string? Value { get; set; }
-
- ///
- /// Gets timestamp when this record was added.
- ///
- public DateTime StatusChangedWhen { get; } = DateTime.Now;
+ public virtual string? Value { get; set; }
///
/// Maps the current command to a new instance of the specified type.