14 lines
499 B
C#
14 lines
499 B
C#
namespace Backend.Domain;
|
|
|
|
public sealed class AdminAuditEntry
|
|
{
|
|
public int Id { get; set; }
|
|
public string AdminTwitchUserId { get; set; } = string.Empty;
|
|
public string ActionType { get; set; } = string.Empty;
|
|
public string EntityType { get; set; } = string.Empty;
|
|
public string EntityId { get; set; } = string.Empty;
|
|
public string Summary { get; set; } = string.Empty;
|
|
public string MetadataJson { get; set; } = "{}";
|
|
public DateTimeOffset CreatedAt { get; set; }
|
|
}
|