using System;
using System.Collections.Generic;
namespace LaDOSE.DTO
{
public class ApplicationUserDTO
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Username { get; set; }
/// Only ever read from a request; never populated on a response.
public string Password { get; set; }
/// Role names held by the user, e.g. ["Admin"]. Empty means a plain user.
public List Roles { get; set; }
public string Token { get; set; }
public DateTime Expire { get; set; }
}
}