12 lines
231 B
C#
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; }
|
|
} |