todo stage1

This commit is contained in:
2023-10-27 18:07:18 +09:00
parent 937fbc4bc0
commit ba58c0a803
25 changed files with 1189 additions and 31 deletions

View File

@@ -17,11 +17,13 @@ namespace ToDoApp.Model
[Required]
public string Title { get; set; }
public string Description { get; set; }
public string? Description { get; set; }
public DateTime DueDate { get; set; }
public DateTime? DueDate { get; set; }
public bool IsCompleted { get; set; }
public bool? IsToday { get; set; }
public bool? IsCompleted { get; set; }
public DateTime CreateDate { get; set; }