0
0
mirror of https://github.com/sp-tarkov/loot-dump-processor.git synced 2025-02-13 07:10:45 -05:00
loot-dump-processor/Model/Input/Requirements.cs

16 lines
521 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
using Newtonsoft.Json;
namespace LootDumpProcessor.Model.Input
{
public class Requirements
{
[JsonProperty("CompletedQuests", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("CompletedQuests")]
public List<CompletedQuest>? CompletedQuests { get; set; }
[JsonProperty("Standings", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("Standings")]
public object? Standings { get; set; }
}
}