Product seems useless?

This commit is contained in:
CWX
2025-01-24 12:16:49 +00:00
parent 7aba4b1575
commit 83d9b88397
@@ -164,26 +164,6 @@ public record TraderData
public bool? Disabled { get; set; }
}
public record Product
public record Product : Item
{
[JsonPropertyName("_id")]
public string? Id { get; set; }
/// <summary>
/// _tpl
/// </summary>
[JsonPropertyName("_tpl")]
public string? Template { get; set; }
[JsonPropertyName("parentId")]
public string? ParentId { get; set; }
[JsonPropertyName("slotId")]
public string? SlotId { get; set; }
[JsonPropertyName("location")]
public ItemLocation? Location { get; set; }
[JsonPropertyName("upd")]
public Upd? Upd { get; set; }
}