Files
LaDOSE/LaDOSE.Src/LaDOSE.DTO/ApplicationUser.cs

15 lines
334 B
C#

namespace LaDOSE.DTO
{
public class ApplicationUser
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public string Token { get; set; }
}
}