using System; using System.Collections.Generic; [Serializable] public class ItemData { public string Id { get; set; } public string ShortName { get; set; } public string Name { get; set; } public string NormalizedName { get; set; } public List Types { get; set; } public int BasePrice { get; set; } public int? avg24hPrice { get; set; } }