15 lines
336 B
C#
Raw Normal View History

2021-06-18 10:37:33 +02:00
using System;
using System.Collections.Generic;
using System.Text;
namespace key4intranet.authentication.Models
{
public class ExposedUserModel
{
public string Id { get; set; }
public string Name { get; set; }
public List<string> Roles { get; set; }
public string Token { get; set; }
}
}