16 lines
619 B
C#
16 lines
619 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 string CreatedFromIp { get; set; } = string.Empty;
|
|
public string UserAgent { get; set; } = string.Empty;
|
|
public DateTimeOffset CreatedAt { get; set; }
|
|
}
|