Files
LaDOSE/LaDOSE.Src/LaDOSE.DTO/ApplicationUserDTO.cs

18 lines
397 B
C#
Raw Normal View History


using System;
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; }
public string Password { get; set; }
public string Token { get; set; }
public DateTime Expire { get; set; }
}
}