2024-11-08 18:24:52 +05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Persistence.Models;
|
|
|
|
|
|
|
|
|
|
public class SetpointValueDto
|
|
|
|
|
{
|
2024-11-18 09:39:24 +05:00
|
|
|
|
public Guid Key { get; set; }
|
|
|
|
|
public required object Value { get; set; }
|
2024-11-08 18:24:52 +05:00
|
|
|
|
}
|
|
|
|
|
|