15 lines
304 B
C#
15 lines
304 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Shared.DTO.Integracion_DGA;
|
|
|
|
public partial class SenalesNueva
|
|
{
|
|
public string TagName { get; set; } = null!;
|
|
|
|
public string Data { get; set; } = null!;
|
|
|
|
public string? Hora { get; set; }
|
|
|
|
public string? Valor { get; set; }
|
|
}
|