automated dev commit
This commit is contained in:
commit
7551b4d824
18 changed files with 870 additions and 0 deletions
16
Models/Mensaje.cs
Normal file
16
Models/Mensaje.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using System.Runtime.Serialization;
|
||||
|
||||
namespace SoapService.Models;
|
||||
|
||||
[DataContract(Namespace = "http://dnic.gub.uy/")]
|
||||
public class Mensaje
|
||||
{
|
||||
[DataMember(Order = 0)]
|
||||
public int CodMensaje { get; set; }
|
||||
|
||||
[DataMember(Order = 1)]
|
||||
public string Descripcion { get; set; }
|
||||
|
||||
[DataMember(Order = 2)]
|
||||
public string DatoExtra { get; set; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue