mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 06:00:46 +00:00
Add [JsonProperty] on Game's properties
This commit is contained in:
@@ -35,8 +35,13 @@ using Newtonsoft.Json;
|
||||
namespace ArchiSteamFarm {
|
||||
internal sealed class CardsFarmer : IDisposable {
|
||||
internal sealed class Game {
|
||||
[JsonProperty]
|
||||
internal readonly uint AppID;
|
||||
|
||||
[JsonProperty]
|
||||
internal float HoursPlayed;
|
||||
|
||||
[JsonProperty]
|
||||
internal byte CardsRemaining;
|
||||
|
||||
internal Game(uint appID, float hoursPlayed, byte cardsRemaining) {
|
||||
|
||||
Reference in New Issue
Block a user