15 lines
344 B
C#
15 lines
344 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace WorkFlow.Application.DTO
|
|
{
|
|
public record BaseUpdateDto
|
|
{
|
|
public required int Id { get; init; }
|
|
|
|
[JsonIgnore]
|
|
public required string ChangedWho { get; set; } = "UNKNOWN";
|
|
|
|
[JsonIgnore]
|
|
public required DateTime ChangedWhen = DateTime.Now;
|
|
}
|
|
} |