mirror of
https://github.com/RPCS3/discord-bot.git
synced 2024-12-12 13:16:44 +00:00
fbad33ea13
implemented psn crawling for ps3 game metadata (mostly for thumbnails) implemented game thumbnails for game embeds fixed usage of dbcontext some other bugfixes
21 lines
383 B
C#
21 lines
383 B
C#
namespace CompatApiClient.POCOs
|
|
{
|
|
public class UpdateInfo
|
|
{
|
|
public int ReturnCode;
|
|
public BuildInfo LatestBuild;
|
|
}
|
|
|
|
public class BuildInfo
|
|
{
|
|
public string Pr;
|
|
public BuildLink Windows;
|
|
public BuildLink Linux;
|
|
}
|
|
|
|
public class BuildLink
|
|
{
|
|
public string Datetime;
|
|
public string Download;
|
|
}
|
|
} |