mirror of
https://github.com/sp-tarkov/assembly-tool.git
synced 2025-02-13 04:50:45 -05:00
12 lines
248 B
C#
12 lines
248 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace ReCodeItLib.Models;
|
|
|
|
public class ItemTemplateModel
|
|
{
|
|
[JsonPropertyName("_id")]
|
|
public string? Id { get; set; }
|
|
|
|
[JsonPropertyName("_name")]
|
|
public string? Name { get; set; }
|
|
} |