Initial VTuber Awards implementation

This commit is contained in:
AzuTear
2026-06-17 11:35:45 +02:00
commit 670259a983
74 changed files with 15797 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
namespace Backend.Domain;
public sealed class Season
{
public int Id { get; set; }
public int Year { get; set; }
public string Name { get; set; } = string.Empty;
public bool IsCurrent { get; set; }
public bool IsCommunityOnly { get; set; }
public string CurrentPhase { get; set; } = string.Empty;
public DateOnly NominationStartsAt { get; set; }
public DateOnly NominationEndsAt { get; set; }
public DateOnly VotingStartsAt { get; set; }
public DateOnly VotingEndsAt { get; set; }
public DateOnly ReviewStartsAt { get; set; }
public DateOnly ReviewEndsAt { get; set; }
public DateOnly ShowDate { get; set; }
public ICollection<Category> Categories { get; set; } = [];
public ICollection<AwardResult> Results { get; set; } = [];
}