auto-creamapi-2/auto-creamapi/Models/SteamAppModel.cs

38 lines
852 B
C#
Raw Normal View History

2020-12-19 19:14:40 -05:00
using System.Collections.Generic;
using System.Text.Json.Serialization;
using MvvmCross.ViewModels;
2020-12-19 19:14:40 -05:00
namespace auto_creamapi.Models
2020-12-19 19:14:40 -05:00
{
public class SteamApp
2020-12-19 19:14:40 -05:00
{
[JsonPropertyName("appid")]
public int AppId { get; set; }
[JsonPropertyName("name")]
public string Name { get; set; }
public override string ToString()
{
//return $"AppId: {AppId}, Name: {Name}";
return $"{AppId}={Name}";
2020-12-19 19:14:40 -05:00
}
public bool CompareId(SteamApp steamApp)
2020-12-19 19:14:40 -05:00
{
return AppId.Equals(steamApp.AppId);
2020-12-19 19:14:40 -05:00
}
}
public class AppList
2020-12-19 19:14:40 -05:00
{
[JsonPropertyName("apps")]
public List<SteamApp> Apps { get; set; }
2020-12-19 19:14:40 -05:00
}
public class SteamApps
{
[JsonPropertyName("applist")]
public AppList AppList { get; set; }
2020-12-19 19:14:40 -05:00
}
}