This commit is contained in:
2020-06-26 13:46:22 +00:00
parent 3dc3c556fc
commit 1cf91e99ff
3 changed files with 9 additions and 3 deletions

View File

@@ -7,6 +7,10 @@ namespace AyaNova.Models
public class FileAttachment
{
public FileAttachment(){
//all start out as synchronized
InSync=true;
}
public long Id { get; set; }
public uint Concurrency { get; set; }
@@ -25,5 +29,7 @@ namespace AyaNova.Models
[Required]
public DateTime LastModified { get; set; }
public string Notes { get; set; }
public bool InSync {get;set;}//was on disk last sync check
}
}