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

12 lines
231 B
C#

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