We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41e4784 commit 317eae7Copy full SHA for 317eae7
Runtime/Game/Requests/PersitentPlayerStorageRequest.cs
@@ -1,6 +1,7 @@
1
using System.Collections.Generic;
2
using LootLocker.Requests;
3
using System;
4
+using LLlibs.ZeroDepJson;
5
6
namespace LootLocker.Requests
7
{
@@ -36,6 +37,12 @@ public class LootLockerPayload
36
37
public string key { get; set; }
38
public string value { get; set; }
39
public int order { get; set; }
40
+
41
+#if LOOTLOCKER_USE_NEWTONSOFTJSON
42
+ [JsonProperty("public")]
43
+#else
44
+ [Json(Name = "public")]
45
+#endif
46
public bool is_public { get; set; }
47
}
48
0 commit comments