Skip to content

Commit

Permalink
May 2024: Remove deprecated APIs for August 2024 update (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranayub authored Jun 5, 2024
1 parent 571e8cd commit ac70e40
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions IGDB/Models/Game.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ public class Game : ITimestamps, IIdentifier, IHasChecksum

public string Checksum { get; set; }

public IdentityOrValue<Collection> Collection { get; set; }

public IdentitiesOrValues<Collection> Collections { get; set; }

public IdentityOrValue<Cover> Cover { get; set; }
Expand All @@ -39,8 +37,6 @@ public class Game : ITimestamps, IIdentifier, IHasChecksum

public DateTimeOffset? FirstReleaseDate { get; set; }

public int? Follows { get; set; }

public IdentitiesOrValues<Game> Forks { get; set; }

public IdentityOrValue<Franchise> Franchise { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion IGDB/Models/Platform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down

0 comments on commit ac70e40

Please sign in to comment.