refacto(DocumentStatusDto): Eigenschaft-Value veränderbar gemacht

This commit is contained in:
Developer 02
2025-03-28 15:14:45 +01:00
parent 7c969c8950
commit 4a53e24618
2 changed files with 10 additions and 2 deletions

View File

@@ -8,7 +8,9 @@ namespace EnvelopeGenerator.Application.DTOs
int ReceiverId,
int Status,
DateTime? StatusChangedWhen,
string Value,
DateTime AddedWhen,
DateTime? ChangedWhen) : IUnique<int>;
DateTime? ChangedWhen) : IUnique<int>
{
public string? Value { get; set; }
};
}