refactor(core): DTOs und Services an Core 2.0.0.0 angepasst
This commit is contained in:
@@ -1,9 +1,14 @@
|
||||
namespace DigitalData.UserManager.Application.DTOs.Base
|
||||
using DigitalData.Core.Abstractions;
|
||||
|
||||
namespace DigitalData.UserManager.Application.DTOs.Base
|
||||
{
|
||||
public record BaseUpdateDto()
|
||||
public record BaseUpdateDto() : IUnique<int>
|
||||
{
|
||||
|
||||
public string ChangedWho { get; set; } = "UNAUTHORIZED";
|
||||
|
||||
public DateTime ChangedWhen { get; set; } = DateTime.Now;
|
||||
|
||||
public int Id { get; init; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user