Files
LaDOSE/LaDOSE.Src/LaDOSE.DTO/ApplicationUserDTO.cs
Darkstack 63db02d798 Test Connection
Add Todo
Bot use Webservice now
TBD : Rework Event
2019-03-27 00:37:11 +01:00

18 lines
397 B
C#

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; }
}
}