summaryrefslogtreecommitdiff
path: root/Models/Prize.cs
blob: 496dcb78a07299883e28d70c513138376e23c59f (plain)
1
2
3
4
5
6
7
8
9
10
namespace BackendPIA.Models {
    public class Prize {
        public long Id { get; set; }
        public long RaffleId { get; set; }
        public Raffle? Raffle { get; set; }
        public string Name { get; set; }
        public int Tier { get; set; }
        public string Category { get; set; }
    }
}