Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
Schedule.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using Newtonsoft.Json;
3
4public class Schedule
5{
6 public class Item
7 {
8 [JsonProperty]
9 public Date date;
10
11 public string Name = "tempSchedule".lang();
12 }
13
14 [JsonProperty]
15 public List<Item> list = new List<Item>();
16}
Definition: Date.cs:4
string Name
Definition: Schedule.cs:11
Date date
Definition: Schedule.cs:9
List< Item > list
Definition: Schedule.cs:15