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
+11
View File
@@ -0,0 +1,11 @@
namespace Backend.Domain;
public sealed class AwardResult
{
public int Id { get; set; }
public int SeasonId { get; set; }
public Season Season { get; set; } = null!;
public int CandidateId { get; set; }
public Candidate Candidate { get; set; } = null!;
public string CategoryName { get; set; } = string.Empty;
}