automated dev commit

This commit is contained in:
Mariano Z. 2025-05-05 22:17:03 -03:00
commit 7551b4d824
18 changed files with 870 additions and 0 deletions

16
Models/ImagenDigital.cs Normal file
View file

@ -0,0 +1,16 @@
using System.Runtime.Serialization;
namespace SoapService.Models;
[DataContract(Namespace = "http://dnic.gub.uy/")]
public class ImagenDigital
{
[DataMember(Order = 0)]
public string Foto { get; set; }
[DataMember(Order = 1)]
public int LargoBytes { get; set; }
[DataMember(Order = 2)]
public int TipoImagen { get; set; }
}