API
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

TimeshareWeekDto.cs 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using JetBrains.Annotations;
  2. using Org.BouncyCastle.Asn1.Mozilla;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Threading.Tasks;
  7. using UnivateProperties_API.Model.Misc;
  8. using UnivateProperties_API.Model.Timeshare;
  9. namespace UnivateProperties_API.Containers.Timeshare
  10. {
  11. public class TimeshareWeekDto : TimeshareWeek
  12. {
  13. public OwnerObject OwnerObject { get; set; }
  14. }
  15. public class OwnerObject
  16. {
  17. public int Id { get; set; }
  18. public string Name { get; set; }
  19. public string Surname { get; set; }
  20. public string IdNumber { get; set; }
  21. public string CompanyRegNumber { get; set; }
  22. public string MaritalStatus { get; set; }
  23. public string EmailAddress { get; set; }
  24. public string CellNumber { get; set; }
  25. public string LandlineNumber { get; set; }
  26. public OwnerAddress Address { get; set; }
  27. public OnwerBankingDetails BankingDetails { get; set; }
  28. }
  29. public class OwnerAddress
  30. {
  31. public int Id { get; set; }
  32. public string StreetNumber { get; set; }
  33. public string Street { get; set; }
  34. public string Suburb { get; set; }
  35. public string City { get; set; }
  36. public string Province { get; set; }
  37. public string PostalCode { get; set; }
  38. }
  39. public class OnwerBankingDetails
  40. {
  41. public int Id { get; set; }
  42. public string AccountNumber { get; set; }
  43. public string AccountHolder { get; set; }
  44. public OwnerBank Bank { get; set; }
  45. }
  46. public class OwnerBank
  47. {
  48. public string Name { get; set; }
  49. public string UniversalBranchCode { get; set; }
  50. public int Id { get; set; }
  51. }
  52. }