From 84cde4dce82c08a4a6f5e013891f4bad4d74cc10 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Thu, 10 Nov 2016 12:28:09 +0100 Subject: [PATCH] Should fix the Json deserialization --- BookAStar/BookAStar/Interfaces/IEstimate.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BookAStar/BookAStar/Interfaces/IEstimate.cs b/BookAStar/BookAStar/Interfaces/IEstimate.cs index 6a21f114..ebe25cd1 100644 --- a/BookAStar/BookAStar/Interfaces/IEstimate.cs +++ b/BookAStar/BookAStar/Interfaces/IEstimate.cs @@ -5,9 +5,9 @@ namespace BookAStar.Model.Interfaces { public interface IEstimate { - IList AttachedFiles { get; set; } - IList AttachedGraphics { get; } - IList Bill { get; set; } + List AttachedFiles { get; set; } + List AttachedGraphics { get; } + List Bill { get; set; } string ClientId { get; set; } long? CommandId { get; set; } string CommandType { get; set; }