9 lines
204 B
C#
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;}
|
|
}
|
|
} |