15 lines
322 B
C#
15 lines
322 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Shared.DTO.Integracion_DGA;
|
|
|
|
public partial class CabIncrementoValoresSenalesNe
|
|
{
|
|
public string TagName { get; set; } = null!;
|
|
|
|
public DateTime TimeStamp { get; set; }
|
|
|
|
public string? Value { get; set; }
|
|
|
|
public string? Quality { get; set; }
|
|
}
|