13 lines
276 B
C#
13 lines
276 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Shared.DTO.Integracion_DGA;
|
|
|
|
public partial class CabMaxFecha
|
|
{
|
|
public string IdSensor { get; set; } = null!;
|
|
|
|
public string? FrecuenciaRegistro { get; set; }
|
|
|
|
public DateTime? MaxFecha { get; set; }
|
|
}
|