10 lines
213 B
C#
10 lines
213 B
C#
namespace MemberCenter.Application.Models.Admin;
|
|
|
|
public sealed record AuditLogDto(
|
|
Guid Id,
|
|
string ActorType,
|
|
Guid? ActorId,
|
|
string Action,
|
|
string? PayloadJson,
|
|
DateTimeOffset CreatedAt);
|