30 lines
763 B
C#
30 lines
763 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Spt.Hideout;
|
|
|
|
public class ScavCaseRewardCountsAndPrices
|
|
{
|
|
[JsonPropertyName("Common")]
|
|
public RewardCountAndPriceDetails? Common { get; set; }
|
|
|
|
[JsonPropertyName("Rare")]
|
|
public RewardCountAndPriceDetails? Rare { get; set; }
|
|
|
|
[JsonPropertyName("Superrare")]
|
|
public RewardCountAndPriceDetails? Superrare { get; set; }
|
|
}
|
|
|
|
public class RewardCountAndPriceDetails
|
|
{
|
|
[JsonPropertyName("minCount")]
|
|
public int? MinCount { get; set; }
|
|
|
|
[JsonPropertyName("maxCount")]
|
|
public int? MaxCount { get; set; }
|
|
|
|
[JsonPropertyName("minPriceRub")]
|
|
public int? MinPriceRub { get; set; }
|
|
|
|
[JsonPropertyName("maxPriceRub")]
|
|
public int? MaxPriceRub { get; set; }
|
|
} |