blob: ab2a12aaa605105ce0885b871021200c81a221ad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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"
}
};
}
}
|