|
| 1 | +using System; |
| 2 | +using System.Collections.Generic; |
| 3 | + |
| 4 | +namespace StrDss.Data.Entities; |
| 5 | + |
| 6 | +public partial class DssBusinessLicence |
| 7 | +{ |
| 8 | + /// <summary> |
| 9 | + /// Unique generated key |
| 10 | + /// </summary> |
| 11 | + public long BusinessLicenceId { get; set; } |
| 12 | + |
| 13 | + /// <summary> |
| 14 | + /// The local government issued licence number that applies to the rental offering |
| 15 | + /// </summary> |
| 16 | + public string BusinessLicenceNo { get; set; } = null!; |
| 17 | + |
| 18 | + /// <summary> |
| 19 | + /// The date on which the business licence expires |
| 20 | + /// </summary> |
| 21 | + public DateOnly ExpiryDt { get; set; } |
| 22 | + |
| 23 | + /// <summary> |
| 24 | + /// The full physical address of the location that is licenced as a short-term rental business |
| 25 | + /// </summary> |
| 26 | + public string? PhysicalRentalAddressTxt { get; set; } |
| 27 | + |
| 28 | + /// <summary> |
| 29 | + /// Free form description of the type of business licence issued (e.g. short-term rental, bed and breakfast, boarding and lodging, tourist accommodation) |
| 30 | + /// </summary> |
| 31 | + public string? LicenceTypeTxt { get; set; } |
| 32 | + |
| 33 | + /// <summary> |
| 34 | + /// Notes related to any restrictions associated with the licence |
| 35 | + /// </summary> |
| 36 | + public string? RestrictionTxt { get; set; } |
| 37 | + |
| 38 | + /// <summary> |
| 39 | + /// Official name of the business |
| 40 | + /// </summary> |
| 41 | + public string? BusinessNm { get; set; } |
| 42 | + |
| 43 | + /// <summary> |
| 44 | + /// Street address component of the business mailing address |
| 45 | + /// </summary> |
| 46 | + public string? MailingStreetAddressTxt { get; set; } |
| 47 | + |
| 48 | + /// <summary> |
| 49 | + /// City component of the business mailing address |
| 50 | + /// </summary> |
| 51 | + public string? MailingCityNm { get; set; } |
| 52 | + |
| 53 | + /// <summary> |
| 54 | + /// Province component of the business mailing address |
| 55 | + /// </summary> |
| 56 | + public string? MailingProvinceCd { get; set; } |
| 57 | + |
| 58 | + /// <summary> |
| 59 | + /// Postal code component of the business mailing address |
| 60 | + /// </summary> |
| 61 | + public string? MailingPostalCd { get; set; } |
| 62 | + |
| 63 | + /// <summary> |
| 64 | + /// Full name of the registered business owner |
| 65 | + /// </summary> |
| 66 | + public string? BusinessOwnerNm { get; set; } |
| 67 | + |
| 68 | + /// <summary> |
| 69 | + /// Phone number of the business owner |
| 70 | + /// </summary> |
| 71 | + public string? BusinessOwnerPhoneNo { get; set; } |
| 72 | + |
| 73 | + /// <summary> |
| 74 | + /// Email address of the business owner |
| 75 | + /// </summary> |
| 76 | + public string? BusinessOwnerEmailAddressDsc { get; set; } |
| 77 | + |
| 78 | + /// <summary> |
| 79 | + /// Full name of the business operator or property manager |
| 80 | + /// </summary> |
| 81 | + public string? BusinessOperatorNm { get; set; } |
| 82 | + |
| 83 | + /// <summary> |
| 84 | + /// Phone number of the business operator |
| 85 | + /// </summary> |
| 86 | + public string? BusinessOperatorPhoneNo { get; set; } |
| 87 | + |
| 88 | + /// <summary> |
| 89 | + /// Email address of the business operator |
| 90 | + /// </summary> |
| 91 | + public string? BusinessOperatorEmailAddressDsc { get; set; } |
| 92 | + |
| 93 | + /// <summary> |
| 94 | + /// Description of an infraction |
| 95 | + /// </summary> |
| 96 | + public string? InfractionTxt { get; set; } |
| 97 | + |
| 98 | + /// <summary> |
| 99 | + /// The date on which the described infraction occurred |
| 100 | + /// </summary> |
| 101 | + public DateOnly? InfractionDt { get; set; } |
| 102 | + |
| 103 | + /// <summary> |
| 104 | + /// Description or name of the property zoning |
| 105 | + /// </summary> |
| 106 | + public string? PropertyZoneTxt { get; set; } |
| 107 | + |
| 108 | + /// <summary> |
| 109 | + /// The number of bedrooms in the dwelling unit that are available for short term rental |
| 110 | + /// </summary> |
| 111 | + public short? AvailableBedroomsQty { get; set; } |
| 112 | + |
| 113 | + /// <summary> |
| 114 | + /// The number of guests that can be accommodated |
| 115 | + /// </summary> |
| 116 | + public short? MaxGuestsAllowedQty { get; set; } |
| 117 | + |
| 118 | + /// <summary> |
| 119 | + /// Indicates whether the short term rental property is a principal residence |
| 120 | + /// </summary> |
| 121 | + public bool? IsPrincipalResidence { get; set; } |
| 122 | + |
| 123 | + /// <summary> |
| 124 | + /// Indicates whether the owner lives on the property |
| 125 | + /// </summary> |
| 126 | + public bool? IsOwnerLivingOnsite { get; set; } |
| 127 | + |
| 128 | + /// <summary> |
| 129 | + /// Indicates whether the business owner rents the property |
| 130 | + /// </summary> |
| 131 | + public bool? IsOwnerPropertyTenant { get; set; } |
| 132 | + |
| 133 | + /// <summary> |
| 134 | + /// The number used to identify the property |
| 135 | + /// </summary> |
| 136 | + public string? PropertyFolioNo { get; set; } |
| 137 | + |
| 138 | + /// <summary> |
| 139 | + /// The PID number assigned by the Land Title and Survey Authority that identifies the piece of land |
| 140 | + /// </summary> |
| 141 | + public string? PropertyParcelIdentifierNo { get; set; } |
| 142 | + |
| 143 | + /// <summary> |
| 144 | + /// The physical description of the property as it is registered with the Land Title and Survey Authority |
| 145 | + /// </summary> |
| 146 | + public string? PropertyLegalDescriptionTxt { get; set; } |
| 147 | + |
| 148 | + /// <summary> |
| 149 | + /// Foreign key |
| 150 | + /// </summary> |
| 151 | + public string LicenceStatusType { get; set; } = null!; |
| 152 | + |
| 153 | + /// <summary> |
| 154 | + /// Foreign key |
| 155 | + /// </summary> |
| 156 | + public long ProvidingOrganizationId { get; set; } |
| 157 | + |
| 158 | + /// <summary> |
| 159 | + /// Foreign key |
| 160 | + /// </summary> |
| 161 | + public long? AffectedByPhysicalAddressId { get; set; } |
| 162 | + |
| 163 | + /// <summary> |
| 164 | + /// Trigger-updated timestamp of last change |
| 165 | + /// </summary> |
| 166 | + public DateTime UpdDtm { get; set; } |
| 167 | + |
| 168 | + /// <summary> |
| 169 | + /// The globally unique identifier (assigned by the identity provider) for the most recent user to record a change |
| 170 | + /// </summary> |
| 171 | + public Guid? UpdUserGuid { get; set; } |
| 172 | + |
| 173 | + public virtual DssPhysicalAddress? AffectedByPhysicalAddress { get; set; } |
| 174 | + |
| 175 | + public virtual ICollection<DssRentalListing> DssRentalListings { get; set; } = new List<DssRentalListing>(); |
| 176 | + |
| 177 | + public virtual DssBusinessLicenceStatusType LicenceStatusTypeNavigation { get; set; } = null!; |
| 178 | + |
| 179 | + public virtual DssOrganization ProvidingOrganization { get; set; } = null!; |
| 180 | +} |
0 commit comments