0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 09:10:44 -05:00
assembly-tool/RecodeItLib/Models/ItemTemplateModel.cs

9 lines
172 B
C#
Raw Normal View History

2024-12-31 13:46:44 -05:00
namespace ReCodeItLib.Models;
public class ItemTemplateModel
{
2024-12-31 03:13:29 -05:00
public string? _id;
public string? _name;
public string? _parent;
public string? _type;
}