Merge branch 'fix-dga' into DEV-LT

This commit is contained in:
Leonel Toro 2025-07-15 11:06:02 -04:00
commit f27f4f54f6
3 changed files with 105 additions and 188 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; }
}
}