automated dev commit
This commit is contained in:
commit
7551b4d824
18 changed files with 870 additions and 0 deletions
16
Models/ImagenDigital.cs
Normal file
16
Models/ImagenDigital.cs
Normal 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; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue