Initial VTuber Awards implementation
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace Backend.Domain;
|
||||
|
||||
public sealed class VoteEntry
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public int BallotId { get; set; }
|
||||
public VoteBallot Ballot { 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!;
|
||||
}
|
||||
Reference in New Issue
Block a user