20 lines
361 B
C#
20 lines
361 B
C#
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<string> Types { get; set; }
|
|
|
|
public int BasePrice { get; set; }
|
|
|
|
public int? avg24hPrice { get; set; }
|
|
}
|