This commit is contained in:
2021-10-05 22:19:13 +00:00
parent 77b15b276c
commit 37025e8f14
2 changed files with 2 additions and 4 deletions

View File

@@ -392,7 +392,6 @@ namespace AyaNova.Api.Controllers
//we shouldn't have allowed null dates in the first place in v7 but here we are :)
public DateTime Start { get; set; }
public DateTime End { get; set; }
public bool Timed { get { return true; } }
public string Name { get; set; }
public string Color { get; set; }
public string TextColor { get; set; }
@@ -408,8 +407,7 @@ namespace AyaNova.Api.Controllers
//user can simply filter a data table by null dates to see them
//we shouldn't have allowed null dates in the first place in v7 but here we are :)
public DateTime Start { get; set; }
public DateTime End { get; set; }
public bool Timed { get { return true; } }
public DateTime End { get; set; }
public string Name { get; set; }
public string Color { get; set; }
public string TextColor { get; set; }