This commit is contained in:
bcastrogallardo 2025-07-14 09:48:59 -04:00
parent e7372f2ae6
commit 4b5b3ae3d9
3 changed files with 113 additions and 86 deletions

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTO.Integracion_DGA
{
public partial class DGAInsert
{
public string TAG { get; set; } = string.Empty;
public string? VALOR { get; set; }
public DateTime FECHAMEDICION { get; set; }
}
}