summaryrefslogtreecommitdiffstats
path: root/src/Data/StaticData.cs
diff options
context:
space:
mode:
authorivar <i@oiee.no>2025-10-19 23:41:23 +0200
committerivar <i@oiee.no>2025-10-19 23:41:23 +0200
commit3f4c0720e1e3421431e7baa20882a4a4512a7fab (patch)
tree734ca81d7d0841d8863e3f523ebba14c282dc681 /src/Data/StaticData.cs
downloadfagprove-master.tar.xz
fagprove-master.zip
InitialHEADmaster
Diffstat (limited to 'src/Data/StaticData.cs')
-rw-r--r--src/Data/StaticData.cs43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/Data/StaticData.cs b/src/Data/StaticData.cs
new file mode 100644
index 0000000..ab2a12a
--- /dev/null
+++ b/src/Data/StaticData.cs
@@ -0,0 +1,43 @@
+using System;
+using System.Collections.Generic;
+
+namespace IOL.Fagprove.Data
+{
+ public class ReservationObjectCategories
+ {
+ public Guid Id { get; set; }
+ public string Name { get; set; }
+ }
+
+ public static class StaticData
+ {
+ public static List<ReservationObjectCategories> CabinFields => new List<ReservationObjectCategories>
+ {
+ new ReservationObjectCategories
+ {
+ Id = new Guid("77836174-c984-473d-a2b5-802e17fdba04"),
+ Name = "Hyttefelt 1"
+ },
+ new ReservationObjectCategories
+ {
+ Id = new Guid("86ca4470-0036-446b-99a3-ed7e5131da81"),
+ Name = "Hyttefelt 2"
+ },
+ new ReservationObjectCategories
+ {
+ Id = new Guid("25c7b7fe-1c61-47f0-a5f0-383351f00b1c"),
+ Name = "Hyttefelt 3"
+ },
+ new ReservationObjectCategories
+ {
+ Id = new Guid("e3c19476-fde6-48af-952f-f2443f158f2c"),
+ Name = "Hyttefelt 4"
+ },
+ new ReservationObjectCategories
+ {
+ Id = new Guid("546d7078-27ed-4aba-816e-e24d4212724c"),
+ Name = "Ikke spesifisert"
+ }
+ };
+ }
+} \ No newline at end of file