forked from ddrilling/AsbCloudServer
27 lines
615 B
C#
27 lines
615 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
#nullable enable
|
|||
|
/// <summary>
|
|||
|
/// Минимальное и максимальное значение
|
|||
|
/// </summary>
|
|||
|
public class MinMaxDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Минимальное значение
|
|||
|
/// </summary>
|
|||
|
public double Min { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// максимальное значение
|
|||
|
/// </summary>
|
|||
|
public double Max { get; set; }
|
|||
|
}
|
|||
|
#nullable disable
|
|||
|
}
|