This commit is contained in:
2019-01-15 22:45:40 +00:00
parent 72c2b8f4a5
commit 09609bf1bb
9 changed files with 113 additions and 15 deletions

View File

@@ -36,6 +36,7 @@ namespace AyaNova.Models
public long? ClientId { get; set; }
public long? HeadOfficeId { get; set; }
public long? SubVendorId { get; set; }
public string CustomFields { get; set; }
public List<string> Tags { get; set; }

View File

@@ -23,11 +23,13 @@ namespace AyaNova.Models
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public string Notes { get; set; }
public int Count {get;set;}
public int Count { get; set; }
public string CustomFields { get; set; }
public List<string> Tags { get; set; }
public Widget(){
Tags=new List<string>();
public Widget()
{
Tags = new List<string>();
}
}