diff --git a/BookAStar/BookAStar/Model/Workflow/Estimate.cs b/BookAStar/BookAStar/Model/Workflow/Estimate.cs index a2cb664e..c0c269a7 100644 --- a/BookAStar/BookAStar/Model/Workflow/Estimate.cs +++ b/BookAStar/BookAStar/Model/Workflow/Estimate.cs @@ -15,7 +15,7 @@ namespace BookAStar.Model.Workflow // Markdown expected public string Description { get; set; } public string Title { get; set; } - public IList Bill { get; set; } + public List Bill { get; set; } /// /// List of attached graphic files /// to this estimate, as relative pathes to @@ -23,7 +23,7 @@ namespace BookAStar.Model.Workflow /// In db, they are separated by : /// /// - public IList AttachedGraphics { get; set; } + public List AttachedGraphics { get; set; } [JsonIgnore] public string AttachedGraphicsString { @@ -37,7 +37,7 @@ namespace BookAStar.Model.Workflow /// In db, they are separated by : /// /// - public IList AttachedFiles { get; set; } + public List AttachedFiles { get; set; } [JsonIgnore] public string AttachedFilesString {