summaryrefslogtreecommitdiff
path: root/Models/RaffleWinner.cs
blob: 59b91b2156605a2e0d7457fdb1a4a934ec14f7fa (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace BackendPIA.Models {
    public class RaffleWinner {
        public long Id { get; set; }
        public string UserAccountId { get; set; }
        public long PrizeId { get; set; }
        public long RaffleId { get; set; }
        public UserAccount? UserAccount { get; set; }
        public Prize? Prize { get; set; }
        public Raffle? Raffle { get; set; }
    }
}