Added link to forum search

Added status bar
List of DLC is now monospaced
Fixed weird crash with search result window
This commit is contained in:
Jeddunk 2020-12-23 12:34:31 +01:00
parent 56e92924ed
commit 45f86ecc63
11 changed files with 1447 additions and 129 deletions

View file

@ -3,7 +3,7 @@ using System.Text.Json.Serialization;
namespace auto_creamapi.POCOs
{
public class App
public class SteamApp
{
[JsonPropertyName("appid")]
public int AppId { get; set; }
@ -16,21 +16,21 @@ namespace auto_creamapi.POCOs
return $"AppId: {AppId}, Name: {Name}";
}
public bool CompareId(App app)
public bool CompareId(SteamApp steamApp)
{
return AppId.Equals(app.AppId);
return AppId.Equals(steamApp.AppId);
}
}
public class Applist
public class AppList
{
[JsonPropertyName("apps")]
public List<App> Apps { get; set; }
public List<SteamApp> Apps { get; set; }
}
public class SteamApps
{
[JsonPropertyName("applist")]
public Applist AppList { get; set; }
public AppList AppList { get; set; }
}
}