mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 06:50:45 -05:00
23 lines
534 B
C#
23 lines
534 B
C#
|
namespace LootDumpProcessor.Model.Tarkov;
|
|||
|
|
|||
|
public class Category
|
|||
|
{
|
|||
|
public string Id { get; set; }
|
|||
|
public string ParentId { get; set; }
|
|||
|
public string Icon { get; set; }
|
|||
|
public string Color { get; set; }
|
|||
|
public string Order { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class HandbookItem
|
|||
|
{
|
|||
|
public string Id { get; set; }
|
|||
|
public string ParentId { get; set; }
|
|||
|
public int Price { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class HandbookRoot
|
|||
|
{
|
|||
|
public List<Category> Categories { get; set; }
|
|||
|
public List<HandbookItem> Items { get; set; }
|
|||
|
}
|