2023-02-05 11:57:03 +00:00

9 lines
204 B
C#

namespace MarketPriceLookup.Common
{
public class HandbookItem
{
public string Id { get; set; }
public string ParentId { get; set; }
public int Price { get;set;}
}
}