Add nullable support
This commit is contained in:
@@ -9,12 +9,12 @@ public class FGetUserDataResult
|
||||
/// [optional] User specific data for this title.
|
||||
/// </summary>
|
||||
[JsonPropertyName("Data")]
|
||||
public Dictionary<string, FUserDataRecord> Data { get; set; }
|
||||
public Dictionary<string, FUserDataRecord>? Data { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// [optional] Indicates the current version of the data that has been set. This is incremented with every set call for that type of
|
||||
/// data (read-only, internal, etc). This version can be provided in Get calls to find updated data.
|
||||
/// </summary>
|
||||
[JsonPropertyName("DataVersion")]
|
||||
public uint DataVersion { get; set; }
|
||||
public uint? DataVersion { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user