persistence/Persistence/Models/SetpointValueDto.cs

19 lines
418 B
C#
Raw Permalink Normal View History

2024-11-08 18:24:52 +05:00
namespace Persistence.Models;
/// <summary>
/// Модель для хранения значения уставки
/// </summary>
2024-11-08 18:24:52 +05:00
public class SetpointValueDto
{
/// Идентификатор уставки
2024-11-18 15:09:10 +05:00
/// <summary>
/// </summary>
public Guid Key { get; set; }
2024-11-18 15:09:10 +05:00
/// <summary>
/// Значение уставки
/// </summary>
public required object Value { get; set; }
2024-11-08 18:24:52 +05:00
}