Test Connection
Add Todo Bot use Webservice now TBD : Rework Event
This commit is contained in:
@@ -9,6 +9,7 @@ namespace LaDOSE.Entity.Context
|
||||
public DbSet<ApplicationUser> ApplicationUser { get; set; }
|
||||
public DbSet<Season> Season { get; set; }
|
||||
public DbSet<Event> Event { get; set; }
|
||||
public DbSet<Todo> Todo { get; set; }
|
||||
|
||||
#region WordPress
|
||||
public DbSet<WPUser> WPUser { get; set; }
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace LaDOSE.Entity
|
||||
|
||||
14
LaDOSE.Src/LaDOSE.Entity/Todo.cs
Normal file
14
LaDOSE.Src/LaDOSE.Entity/Todo.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace LaDOSE.Entity
|
||||
{
|
||||
public class Todo : Context.Entity
|
||||
{
|
||||
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