-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5532ad7
commit e1d812a
Showing
26 changed files
with
278 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"editor.detectIndentation": false, | ||
"editor.tabSize": 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using System; | ||
using Newtonsoft.Json; | ||
|
||
namespace IGDB | ||
{ | ||
public class Collection : ITimestamps | ||
{ | ||
public DateTimeOffset? CreatedAt { get; set; } | ||
|
||
public IdentitiesOrValues<Game> Games { get; set; } | ||
|
||
public string Name { get; set; } | ||
|
||
public string Slug { get; set; } | ||
|
||
public DateTimeOffset? UpdatedAt { get; set; } | ||
|
||
public string Url { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
using System; | ||
|
||
namespace IGDB | ||
{ | ||
public class Company : ITimestamps | ||
{ | ||
public DateTimeOffset? ChangeDate { get; set; } | ||
public ChangeDateCategory ChangeDateCategory { get; set; } | ||
public IdentityOrValue<Company> ChangedCompanyId { get; set; } | ||
|
||
/// <summary> | ||
/// ISO 3166-1 country code | ||
/// </summary> | ||
public int? Country { get; set; } | ||
|
||
public DateTimeOffset? CreatedAt { get; set; } | ||
|
||
public string Description { get; set; } | ||
|
||
public IdentitiesOrValues<Game> Developed { get; set; } | ||
|
||
public IdentityOrValue<CompanyLogo> Logo { get; set; } | ||
|
||
public string Name { get; set; } | ||
public IdentityOrValue<Company> Parent { get; set; } | ||
public IdentitiesOrValues<Game> Published { get; set; } | ||
public string Slug { get; set; } | ||
public DateTimeOffset? StartDate { get; set; } | ||
public StartDateCategory StartDateCategory { get; set; } | ||
public DateTimeOffset? UpdatedAt { get; set; } | ||
public string Url { get; set; } | ||
public IdentitiesOrValues<CompanyWebsite> Websites { get; set; } | ||
|
||
} | ||
|
||
public enum ChangeDateCategory | ||
{ | ||
|
||
} | ||
|
||
public enum StartDateCategory | ||
{ | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace IGDB | ||
{ | ||
public class CompanyLogo | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace IGDB | ||
{ | ||
public class CompanyWebsite | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
using System; | ||
|
||
namespace IGDB | ||
{ | ||
public class ExternalGame : ITimestamps | ||
{ | ||
public ExternalCategory? Category { get; set; } | ||
|
||
public DateTimeOffset? CreatedAt { get; set; } | ||
|
||
public IdentityOrValue<Game> Game { get; set; } | ||
|
||
public string Name { get; set; } | ||
|
||
public string Uid { get; set; } | ||
|
||
public DateTimeOffset? UpdatedAt { get; set; } | ||
|
||
public string Url { get; set; } | ||
|
||
public int? Year { get; set; } | ||
} | ||
|
||
public enum ExternalCategory | ||
{ | ||
Steam = 1, | ||
GOG = 5, | ||
YouTube = 10, | ||
Microsoft = 11, | ||
Apple = 13, | ||
Twitch = 14, | ||
Android = 15 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System; | ||
|
||
namespace IGDB | ||
{ | ||
public class Franchise : ITimestamps | ||
{ | ||
public DateTimeOffset? CreatedAt { get; set; } | ||
public DateTimeOffset? UpdatedAt { get; set; } | ||
public IdentitiesOrValues<Game> Games { get; set; } | ||
public string Name { get; set; } | ||
public string Slug { get; set; } | ||
public string Url { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using System; | ||
|
||
namespace IGDB | ||
{ | ||
public class GameEngine : ITimestamps | ||
{ | ||
public IdentitiesOrValues<Company> Companies { get; set; } | ||
|
||
public DateTimeOffset? CreatedAt { get; set; } | ||
|
||
public string Description { get; set; } | ||
public IdentityOrValue<GameEngineLogo> Logo { get; set; } | ||
|
||
public string Name { get; set; } | ||
|
||
public IdentitiesOrValues<Platform> Platforms { get; set; } | ||
|
||
public string Slug { get; set; } | ||
|
||
public DateTimeOffset? UpdatedAt { get; set; } | ||
public string Url { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace IGDB | ||
{ | ||
public class GameEngineLogo | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System; | ||
|
||
namespace IGDB | ||
{ | ||
public class GameMode : ITimestamps | ||
{ | ||
public DateTimeOffset? CreatedAt { get; set; } | ||
|
||
public string Name { get; set; } | ||
public string Slug { get; set; } | ||
public DateTimeOffset? UpdatedAt { get; set; } | ||
public string Url { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace IGDB | ||
{ | ||
public class GameVideo | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
|
||
namespace IGDB | ||
{ | ||
public interface ITimestamps | ||
{ | ||
DateTimeOffset? CreatedAt { get; set; } | ||
DateTimeOffset? UpdatedAt { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace IGDB | ||
{ | ||
public class InvolvedCompany | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace IGDB | ||
{ | ||
public class Keyword | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace IGDB | ||
{ | ||
public class MultiplayerMode | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace IGDB | ||
{ | ||
public class Platform | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace IGDB | ||
{ | ||
public class PlayerPerspective | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace IGDB | ||
{ | ||
public class ReleaseDate | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace IGDB | ||
{ | ||
public class Screenshot | ||
{ | ||
} | ||
} |
Oops, something went wrong.