Test Connection
Add Todo Bot use Webservice now TBD : Rework Event
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
|
||||
using System;
|
||||
|
||||
namespace LaDOSE.DTO
|
||||
{
|
||||
public class ApplicationUser
|
||||
public class ApplicationUserDTO
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string FirstName { get; set; }
|
||||
@@ -10,6 +12,7 @@ namespace LaDOSE.DTO
|
||||
public string Password { get; set; }
|
||||
|
||||
public string Token { get; set; }
|
||||
public DateTime Expire { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
15
LaDOSE.Src/LaDOSE.DTO/TodoDTO.cs
Normal file
15
LaDOSE.Src/LaDOSE.DTO/TodoDTO.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace LaDOSE.DTO
|
||||
{
|
||||
public class TodoDTO
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string User { get; set; }
|
||||
public string Task { get; set; }
|
||||
public bool Done { get; set; }
|
||||
public DateTime Created { get; set; }
|
||||
public DateTime? Deleted { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user