case 4056

This commit is contained in:
2021-12-31 18:33:05 +00:00
parent 2df3525b07
commit 88d6ad0e03
5 changed files with 77 additions and 238 deletions

View File

@@ -97,6 +97,17 @@ namespace AyaNova.Models
[NotMapped]
public string AlertViz { get; set; } = null;
[NotMapped]
public string LastStateUserViz { get; set; }
[NotMapped]
public string LastStateNameViz { get; set; }
[NotMapped]
public string LastStateColorViz { get; set; }
[NotMapped]
public bool LastStateCompletedViz { get; set; }
[NotMapped]
public bool LastStateLockedViz { get; set; }
[NotMapped]
public bool IsCompleteRecord { get; set; } = true;//indicates if some items were removed due to user role / type restrictions (i.e. woitems they are not scheduled on)

View File

@@ -23,6 +23,14 @@ namespace AyaNova.Models
public long UserId { get; set; }
[NotMapped]
public string UserViz { get; set; }
[NotMapped]
public string NameViz { get; set; }
[NotMapped]
public string ColorViz { get; set; }
[NotMapped]
public bool CompletedViz { get; set; }
[NotMapped]
public bool LockedViz { get; set; }
//workaround for notification
[NotMapped, JsonIgnore]

View File

@@ -99,6 +99,17 @@ namespace AyaNova.Models
[NotMapped]
public string FromPMViz { get; set; }
[NotMapped]
public string LastStateUserViz { get; set; }
[NotMapped]
public string LastStateNameViz { get; set; }
[NotMapped]
public string LastStateColorViz { get; set; }
[NotMapped]
public bool LastStateCompletedViz { get; set; }
[NotMapped]
public bool LastStateLockedViz { get; set; }
[NotMapped]
public bool IsCompleteRecord { get; set; } = true;//indicates if some items were removed due to user role / type restrictions (i.e. woitems they are not scheduled on)