21 lines
466 B
C#
21 lines
466 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Shared.DTO.Integracion_DGA;
|
|
|
|
public partial class CabMonitoreoConsumo
|
|
{
|
|
public string? EmpresaPiloto { get; set; }
|
|
|
|
public double? IdCliente { get; set; }
|
|
|
|
public string? IdDma { get; set; }
|
|
|
|
public string? FechaLectura { get; set; }
|
|
|
|
public double? ConsumoAcumulado { get; set; }
|
|
|
|
public string? CodigoLectura { get; set; }
|
|
|
|
public DateTime? FechaFacturacion { get; set; }
|
|
}
|