Files
SPT-Server-Build/Core/Models/Common/MinMax.cs
T
2025-01-06 17:16:10 +00:00

12 lines
229 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; }
}