Should fix the Json deserialization

main
Paul Schneider 9 years ago
parent dce233df79
commit 84cde4dce8
1 changed files with 3 additions and 3 deletions

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

Loading…