8 lines
171 B
C#
Raw Permalink Normal View History

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