17 lines
498 B
C#
17 lines
498 B
C#
namespace EnvelopeGenerator.Application.DocStatus.Commands;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public record CreateDocStatusCommand : ModifyDocStatusCommandBase
|
|
{
|
|
/// <summary>
|
|
/// Gets timestamp when this record was added. Returns null.
|
|
/// </summary>
|
|
public override DateTime? ChangedWhen => null;
|
|
|
|
/// <summary>
|
|
/// Gets timestamp when this record was added. Returns the StatusChangedWhen value.
|
|
/// </summary>
|
|
public DateTime AddedWhen => StatusChangedWhen;
|
|
} |