persistence/Persistence/Models/SetpointValueDto.cs

15 lines
256 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 int Id { get; set; }
public object Value { get; set; }
}