21 lines
768 B
C#
21 lines
768 B
C#
namespace Backend.Domain;
|
|
|
|
public sealed class Nomination
|
|
{
|
|
public int Id { get; set; }
|
|
public int SeasonId { get; set; }
|
|
public Season Season { get; set; } = null!;
|
|
public int CategoryId { get; set; }
|
|
public Category Category { get; set; } = null!;
|
|
public string SubmittedByTwitchId { get; set; } = string.Empty;
|
|
public int? CandidateId { get; set; }
|
|
public Candidate? Candidate { get; set; }
|
|
public string? CandidateText { get; set; }
|
|
public string? StreamUrl { get; set; }
|
|
public string Status { get; set; } = "pending";
|
|
public string? ReviewNote { get; set; }
|
|
public string? ReviewedByTwitchId { get; set; }
|
|
public DateTimeOffset CreatedAt { get; set; }
|
|
public DateTimeOffset? ReviewedAt { get; set; }
|
|
}
|