persistence/Persistence/Models/SetpointValueDto.cs

15 lines
267 B
C#
Raw Normal View History

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
{
public Guid Key { get; set; }
public required object Value { get; set; }
2024-11-08 18:24:52 +05:00
}