18 lines
443 B
C#
18 lines
443 B
C#
![]() |
namespace MSAdminUsuarios.Models
|
|||
|
{
|
|||
|
public class ErrorModel
|
|||
|
{
|
|||
|
public bool error { get; set; } = false;
|
|||
|
public List<string> cuerpo { get; set; } = new List<string>();
|
|||
|
public List<string>? listaErrores { get; set; } = new List<string>();
|
|||
|
|
|||
|
public ErrorModel()
|
|||
|
{
|
|||
|
error = false;
|
|||
|
cuerpo = new List<string>();
|
|||
|
listaErrores = new List<string>();
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|