Skip to content

Commit

Permalink
Add ApprovalStatusReason to Contract Domain
Browse files Browse the repository at this point in the history
  • Loading branch information
martapederiva committed Sep 30, 2024
1 parent c70fd93 commit ba11c4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Hackney.Shared.HousingSearch/Domain/Asset/Contract.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public class Contract
public DateTime? ApprovalDate { get; set; }
public bool? IsApproved { get; set; }
public ApprovalStatus ApprovalStatus { get; set; }
public string ApprovalStatusReason { get; set; }
public bool? IsActive { get; set; }
public IEnumerable<Charges> Charges { get; set; }
public IEnumerable<RelatedPeople> RelatedPeople { get; set; }
Expand Down
1 change: 1 addition & 0 deletions Hackney.Shared.HousingSearch/Domain/Contract/Contract.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public class Contract
public DateTime? ApprovalDate { get; set; }
public bool? IsApproved { get; set; }
public ApprovalStatus ApprovalStatus { get; set; }
public string ApprovalStatusReason { get; set; }
public bool? IsActive { get; set; }
public IEnumerable<QueryableCharges> Charges { get; set; }
public IEnumerable<QueryableRelatedPeople> RelatedPeople { get; set; }
Expand Down

0 comments on commit ba11c4c

Please sign in to comment.