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" } }; } }