14 lines
429 B
C#
14 lines
429 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 CategoryId { get; set; }
|
|
public Category Category { get; set; } = null!;
|
|
public int CandidateId { get; set; }
|
|
public Candidate Candidate { get; set; } = null!;
|
|
public string CategoryName { get; set; } = string.Empty;
|
|
}
|