Elin Decompiled Documentation EA 23.295 Stable
Loading...
Searching...
No Matches
LoveData.cs
Go to the documentation of this file.
1using Newtonsoft.Json;
2
3public class LoveData : EClass
4{
5 [JsonProperty]
6 public int dateMarriage;
7
8 [JsonProperty]
9 public int dateWedding;
10
11 [JsonProperty]
12 public int uidZoneMarriage;
13
14 [JsonProperty]
15 public string nameZoneMarriage;
16
17 [JsonProperty]
18 public bool gaveCutter;
19
20 [JsonProperty]
21 public bool gotMusicBox;
22
23 public bool IsWed => dateWedding != 0;
24}
Definition: EClass.cs:6
bool IsWed
Definition: LoveData.cs:23
bool gotMusicBox
Definition: LoveData.cs:21
int uidZoneMarriage
Definition: LoveData.cs:12
int dateWedding
Definition: LoveData.cs:9
int dateMarriage
Definition: LoveData.cs:6
bool gaveCutter
Definition: LoveData.cs:18
string nameZoneMarriage
Definition: LoveData.cs:15