9 lines
204 B
C#
Raw Permalink Normal View History

2023-02-05 11:57:03 +00:00
namespace MarketPriceLookup.Common
{
public class HandbookItem
{
public string Id { get; set; }
public string ParentId { get; set; }
public int Price { get;set;}
}
}