azala.info-scraper/azala.info Scraper/Card.cs
2023-04-19 16:28:05 +02:00

16 lines
536 B
C#

using Newtonsoft.Json;
namespace azala.info_Scraper {
internal class Card {
[JsonProperty(PropertyName = "id")]
public long ID { get; set; }
[JsonProperty(PropertyName = "card_text")]
public string Text { get; set; }
[JsonProperty(PropertyName = "num_blanks")]
public int Blanks { get; set; }
[JsonProperty(PropertyName = "o")]
public int Order { get; set; }
[JsonProperty(PropertyName = "deck_id")]
public int DeckID { get; internal set; }
}
}