From 3f4c0720e1e3421431e7baa20882a4a4512a7fab Mon Sep 17 00:00:00 2001 From: ivar Date: Sun, 19 Oct 2025 23:41:23 +0200 Subject: Initial --- src/Data/StaticData.cs | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/Data/StaticData.cs (limited to 'src/Data/StaticData.cs') 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 CabinFields => new List + { + 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 -- cgit v1.3