the initial commit to the repo.
This commit is contained in:
parent
025c032b8c
commit
1b757591b9
264 changed files with 21882 additions and 0 deletions
20
stoopid.raw/ItemData.cs
Normal file
20
stoopid.raw/ItemData.cs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue