Files
vtuber-awards/Backend/Domain/AwardResult.cs
T
2026-06-17 11:35:45 +02:00

12 lines
337 B
C#

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;
}