2018-06-22 18:02:17 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Atesa.Utilitarios
|
|
|
|
|
|
{
|
|
|
|
|
|
public class AtesaJSON
|
|
|
|
|
|
{
|
2018-07-06 15:01:14 +00:00
|
|
|
|
public string UserName { get; set; }
|
|
|
|
|
|
public string UserFullName { get; set; }
|
2018-07-09 19:27:23 +00:00
|
|
|
|
public List<string> PermisosUsuario { get; set; }
|
2018-06-22 18:02:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|