This commit is contained in:
2021-03-02 17:15:24 +00:00
parent c1cccba712
commit 068da11715
14 changed files with 95 additions and 32 deletions

View File

@@ -26,7 +26,11 @@ namespace AyaNova.Models
public bool Viewed { get; set; }
public bool Replied { get; set; }
public long? FromId { get; set; }
[NotMapped]
public string FromViz { get; set; }
public long? ToId { get; set; }
[NotMapped]
public string ToViz { get; set; }
public DateTime Sent { get; set; }//redundant but displayed all over the place in the UI so properly redundant
public Memo()