21 lines
439 B
C#
21 lines
439 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Shared.DTO.Integracion_DGA;
|
|
|
|
public partial class IoAsParamMaxcap
|
|
{
|
|
public string? IdScada { get; set; }
|
|
|
|
public string? FiltroWhereN0 { get; set; }
|
|
|
|
public string? FiltroWhereFrec { get; set; }
|
|
|
|
public int? MaxBomb { get; set; }
|
|
|
|
public string? Localidad { get; set; }
|
|
|
|
public string? Sgz { get; set; }
|
|
|
|
public string? NombrePlanta { get; set; }
|
|
}
|