25 lines
518 B
C#
25 lines
518 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Globalization;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
namespace SteamStorefrontAPI
|
|
{
|
|
|
|
public class Screenshot
|
|
{
|
|
[JsonProperty("id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonProperty("path_thumbnail")]
|
|
public string PathThumbnail { get; set; }
|
|
|
|
[JsonProperty("path_full")]
|
|
public string PathFull { get; set; }
|
|
}
|
|
}
|