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