summaryrefslogtreecommitdiff
path: root/Forms/WinnerDTO.cs
blob: a0d18717e1b77e739145a5f8a4f3363311ced814 (plain)
1
2
3
4
5
6
7
8
9
10
namespace BackendPIA.Forms {
    public class WinnerDTO {
        public long Id { get; set; }
        public string? UserAccountId { get; set; }
        public long RaffleId { get; set; }
        public string? Winner { get; set; }
        public string? Prize { get; set; }
        public string? Raffle { get; set; }      
    }
}