diff --git a/ArchiSteamFarm/CardsFarmer.cs b/ArchiSteamFarm/CardsFarmer.cs index ac6041ca0..73657ab24 100755 --- a/ArchiSteamFarm/CardsFarmer.cs +++ b/ArchiSteamFarm/CardsFarmer.cs @@ -53,11 +53,11 @@ namespace ArchiSteamFarm { // Games that were confirmed to show false status on general badges page private static readonly ImmutableHashSet UntrustedAppIDs = ImmutableHashSet.Create(440, 570, 730); - [JsonProperty(PropertyName = "CurrentGamesFarming")] + [JsonProperty(PropertyName = nameof(CurrentGamesFarming))] [PublicAPI] public IReadOnlyCollection CurrentGamesFarmingReadOnly => CurrentGamesFarming; - [JsonProperty(PropertyName = "GamesToFarm")] + [JsonProperty(PropertyName = nameof(GamesToFarm))] [PublicAPI] public IReadOnlyCollection GamesToFarmReadOnly => GamesToFarm;