Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public class HouseHolds
  2. {
  3. public string Code { get; set; }
  4. public List<HouseHoldBeneficiaries> HouseHoldBeneficiaries { get; set; }
  5. }
  6.  
  7. public class HouseHoldBeneficiaries
  8. {
  9. public Guid HouseHoldId { get; set; }
  10. public Guid BeneficiaryId { get; set; }
  11. public int HouseHoldRelationShipId { get; set; }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement