diff --git a/IGDB/Models/Game.cs b/IGDB/Models/Game.cs index 1e8b38c..b8bc7e9 100644 --- a/IGDB/Models/Game.cs +++ b/IGDB/Models/Game.cs @@ -21,8 +21,6 @@ public class Game : ITimestamps, IIdentifier, IHasChecksum public string Checksum { get; set; } - public IdentityOrValue Collection { get; set; } - public IdentitiesOrValues Collections { get; set; } public IdentityOrValue Cover { get; set; } @@ -39,8 +37,6 @@ public class Game : ITimestamps, IIdentifier, IHasChecksum public DateTimeOffset? FirstReleaseDate { get; set; } - public int? Follows { get; set; } - public IdentitiesOrValues Forks { get; set; } public IdentityOrValue Franchise { get; set; } diff --git a/IGDB/Models/Platform.cs b/IGDB/Models/Platform.cs index c9ff86c..fc6cd51 100644 --- a/IGDB/Models/Platform.cs +++ b/IGDB/Models/Platform.cs @@ -6,7 +6,7 @@ public class Platform : ITimestamps, IIdentifier, IHasChecksum { public string Abbreviation { get; set; } public string AlternativeName { get; set; } - public PlatformCategory Category { get; set; } + public PlatformCategory? Category { get; set; } public string Checksum { get; set; } public DateTimeOffset? CreatedAt { get; set; } public int? Generation { get; set; }