Initial VTuber Awards implementation
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace Backend.Domain;
|
||||
|
||||
public sealed class VoteBallot
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public int SeasonId { get; set; }
|
||||
public Season Season { get; set; } = null!;
|
||||
public string SubmittedByTwitchId { get; set; } = string.Empty;
|
||||
public string Status { get; set; } = "draft";
|
||||
public DateTimeOffset SubmittedAt { get; set; }
|
||||
public ICollection<VoteEntry> Entries { get; set; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user