From 7c48ae849ee382e9f5cac563aa6c94d56492a98d Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Thu, 10 Nov 2016 12:28:56 +0100 Subject: [PATCH] Fixes latest commit --- BookAStar/BookAStar/Model/Workflow/Estimate.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 {