14 lines
340 B
C#

using DigitalData.Core.Abstractions;
namespace DigitalData.UserManager.Application.DTOs.Base
{
public record BaseUpdateDto() : IUnique<int>
{
public string ChangedWho { get; set; } = "UNAUTHORIZED";
public DateTime ChangedWhen { get; set; } = DateTime.Now;
public int Id { get; init; }
}
}