fix typing

This commit is contained in:
CWX
2025-01-13 21:57:50 +00:00
parent c139d8af4c
commit 09914d231f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ public class PmcData : BotBase
{
[JsonPropertyName("Prestige")]
[JsonConverter(typeof(ArrayToObjectFactoryConverter))]
public Tables.Prestige Prestige { get; set; }
public Tables.Prestige? Prestige { get; set; }
}
public class PostRaidPmcData : BotBase
+2 -2
View File
@@ -93,7 +93,7 @@ public class BotBase
[JsonPropertyName("WishList")]
[JsonConverter(typeof(ArrayToObjectFactoryConverter))]
public Dictionary<string, int>? WishList { get; set; }
public DictionaryOrList<string, int>? WishList { get; set; }
[JsonPropertyName("moneyTransferLimitData")]
public MoneyTransferLimits? MoneyTransferLimitData { get; set; }
@@ -165,7 +165,7 @@ public class Info
[JsonPropertyName("lockedMoveCommands")]
public bool? LockedMoveCommands { get; set; }
public long? SavageLockTime { get; set; }
public double? SavageLockTime { get; set; }
public long? LastTimePlayedAsSavage { get; set; }
public BotInfoSettings? Settings { get; set; }
public long? NicknameChangeDate { get; set; }