using EnvelopeGenerator.Domain;
namespace EnvelopeGenerator.Application.DocStatus.Commands;
///
///
///
public class CreateDocStatusCommand : UpdateDocStatusCommand
{
///
/// Gets timestamp when this record was added. Returns the current date and time.
///
public DateTime AddedWhen => StatusChangedWhen;
///
/// Gets timestamp when this record was added. Returns the current date and time.
///
public override DateTime? ChangedWhen { get; } = null;
}