refactor(ModifyDocStatusCommandBase): add EnvelopeId and ReceiverId properties

This commit is contained in:
2025-09-09 23:15:19 +02:00
parent 83ff3da795
commit 6b89b9bbf2
9 changed files with 101 additions and 10 deletions

View File

@@ -8,6 +8,21 @@ namespace EnvelopeGenerator.Application.DocStatus.Commands;
/// </summary>
public record ModifyDocStatusCommandBase : EnvelopeReceiverQueryBase
{
/// <summary>
///
/// </summary>
public int? EnvelopeId => Envelope.Id;
/// <summary>
///
/// </summary>
public int? ReceiverId => Receiver.Id;
/// <summary>
///
/// </summary>
public override ReceiverQueryBase Receiver { get => base.Receiver; set => base.Receiver = value; }
/// <summary>
/// Gets the current status code.
/// </summary>