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

12 lines
248 B
C#
Raw Normal View History

2025-01-11 13:11:07 -05:00
using System.Text.Json.Serialization;
namespace ReCodeItLib.Models;
public class ItemTemplateModel
{
2025-01-11 13:11:07 -05:00
[JsonPropertyName("_id")]
public string? Id { get; set; }
[JsonPropertyName("_name")]
public string? Name { get; set; }
}