Should fix the Json deserialization
This commit is contained in:
parent
c1fb8a9c48
commit
19bd9ddb8e
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…
Add table
Add a link
Reference in a new issue