Initial VTuber Awards implementation
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user