13 lines
370 B
C#
13 lines
370 B
C#
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!;
|
|
}
|