summaryrefslogtreecommitdiff
path: root/Forms/TicketDTO.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Forms/TicketDTO.cs')
-rw-r--r--Forms/TicketDTO.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/Forms/TicketDTO.cs b/Forms/TicketDTO.cs
new file mode 100644
index 0000000..0732708
--- /dev/null
+++ b/Forms/TicketDTO.cs
@@ -0,0 +1,8 @@
+namespace BackendPIA.Forms {
+ public class TicketDTO {
+ public long Id { get; set; }
+ public int Number { get; set; }
+ public bool IsWinner { get; set; }
+ public long RaffleId { get; set; }
+ }
+} \ No newline at end of file