summaryrefslogtreecommitdiff
path: root/Models/Prize.cs
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2022-11-24 16:49:48 -0600
committerHombreLaser <sebastian-440@live.com>2022-11-24 16:49:48 -0600
commitbc6c7c8a8071eb5c5f8877247dde5dfab9f5e4f8 (patch)
tree55d7d77f44af8bce714be132c22f34d7d347c770 /Models/Prize.cs
parent52239a499dfff1fb4344419ee732d447f7fb3347 (diff)
Añadido modelo Prize
Diffstat (limited to 'Models/Prize.cs')
-rw-r--r--Models/Prize.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Models/Prize.cs b/Models/Prize.cs
new file mode 100644
index 0000000..496dcb7
--- /dev/null
+++ b/Models/Prize.cs
@@ -0,0 +1,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; }
+ }
+} \ No newline at end of file