2023-03-03 18:52:31 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2023-07-09 14:49:12 +01:00
|
|
|
|
using System.Collections.Generic;
|
2023-03-03 18:52:31 +00:00
|
|
|
|
|
2024-05-21 19:10:17 +01:00
|
|
|
|
namespace SPT.Custom.Airdrops.Models
|
2023-03-03 18:52:31 +00:00
|
|
|
|
{
|
2023-07-09 14:49:12 +01:00
|
|
|
|
public class AirdropLootResultModel
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("dropType")]
|
|
|
|
|
public string DropType { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("loot")]
|
|
|
|
|
public IEnumerable<AirdropLootModel> Loot { get;set;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-03-03 18:52:31 +00:00
|
|
|
|
public class AirdropLootModel
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("tpl")]
|
|
|
|
|
public string Tpl { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("isPreset")]
|
|
|
|
|
public bool IsPreset { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("stackCount")]
|
|
|
|
|
public int StackCount { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("id")]
|
|
|
|
|
public string ID { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|