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 ReceiverId,
int Status, int Status,
DateTime? StatusChangedWhen, DateTime? StatusChangedWhen,
string Value,
DateTime AddedWhen, DateTime AddedWhen,
DateTime? ChangedWhen) : IUnique<int>; DateTime? ChangedWhen) : IUnique<int>
{
public string? Value { get; set; }
};
} }

View File

@ -43,4 +43,10 @@
<Using Include="NUnit.Framework" /> <Using Include="NUnit.Framework" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<None Update="annotations.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project> </Project>