Files
SPT-Server-Build/Core/Models/Common/MinMax.cs
T
2025-01-14 14:16:15 +00:00

16 lines
306 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Common;
public class MinMax
{
[JsonPropertyName("type")]
public string? Type { get; set; }
[JsonPropertyName("max")]
public double? Max { get; set; }
[JsonPropertyName("min")]
public double? Min { get; set; }
}