Should fix the Json deserialization

This commit is contained in:
Paul Schneider 2016-11-10 12:28:09 +01:00
commit 19bd9ddb8e

View file

@ -5,9 +5,9 @@ namespace BookAStar.Model.Interfaces
{ {
public interface IEstimate public interface IEstimate
{ {
IList<string> AttachedFiles { get; set; } List<string> AttachedFiles { get; set; }
IList<string> AttachedGraphics { get; } List<string> AttachedGraphics { get; }
IList<BillingLine> Bill { get; set; } List<BillingLine> Bill { get; set; }
string ClientId { get; set; } string ClientId { get; set; }
long? CommandId { get; set; } long? CommandId { get; set; }
string CommandType { get; set; } string CommandType { get; set; }