0
0
mirror of https://github.com/sp-tarkov/loot-dump-processor.git synced 2025-02-13 09:50:44 -05:00

16 lines
441 B
C#

using System.Text.Json.Serialization;
using Newtonsoft.Json;
namespace LootDumpProcessor.Model.Input
{
public class Banner
{
[JsonProperty("id", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("id")]
public string? Id { get; set; }
[JsonProperty("pic", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("pic")]
public Pic? Pic { get; set; }
}
}