9a281238e9
All checks were successful
Unit tests / test (push) Successful in 1m14s
Удалена папка Models из проекта DD.Persistence
19 lines
417 B
C#
19 lines
417 B
C#
namespace DD.Persistence.Models;
|
|
|
|
/// <summary>
|
|
/// Модель для хранения значения уставки
|
|
/// </summary>
|
|
public class SetpointValueDto
|
|
{
|
|
/// Идентификатор уставки
|
|
/// <summary>
|
|
/// </summary>
|
|
public Guid Key { get; set; }
|
|
|
|
/// <summary>
|
|
/// Значение уставки
|
|
/// </summary>
|
|
public required object Value { get; set; }
|
|
}
|
|
|