Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
JsonPropertyInfoValues.cs
Go to the documentation of this file.
2
3public sealed class JsonPropertyInfoValues<T>
4{
5 public bool IsProperty { get; init; }
6
7 public bool IsPublic { get; init; }
8
9 public bool IsVirtual { get; init; }
10
11 public Type DeclaringType { get; init; }
12
14
16
17 public Func<object, T?>? Getter { get; init; }
18
19 public Action<object, T?>? Setter { get; init; }
20
22
23 public bool HasJsonInclude { get; init; }
24
25 public bool IsExtensionData { get; init; }
26
28
29 public string PropertyName { get; init; }
30
31 public string? JsonPropertyName { get; init; }
32}