|
| 1 | +namespace StrDss.Model |
| 2 | +{ |
| 3 | + public class BizLicenseDto |
| 4 | + { |
| 5 | + public long BusinessLicenceId { get; set; } |
| 6 | + public string BusinessLicenceNo { get; set; } = null!; |
| 7 | + public DateOnly ExpiryDt { get; set; } |
| 8 | + public string? PhysicalRentalAddressTxt { get; set; } |
| 9 | + public string? LicenceTypeTxt { get; set; } |
| 10 | + public string? RestrictionTxt { get; set; } |
| 11 | + public string? BusinessNm { get; set; } |
| 12 | + public string? MailingStreetAddressTxt { get; set; } |
| 13 | + public string? MailingCityNm { get; set; } |
| 14 | + public string? MailingProvinceCd { get; set; } |
| 15 | + public string? MailingPostalCd { get; set; } |
| 16 | + public string? BusinessOwnerNm { get; set; } |
| 17 | + public string? BusinessOwnerPhoneNo { get; set; } |
| 18 | + public string? BusinessOwnerEmailAddressDsc { get; set; } |
| 19 | + public string? BusinessOperatorNm { get; set; } |
| 20 | + public string? BusinessOperatorPhoneNo { get; set; } |
| 21 | + public string? BusinessOperatorEmailAddressDsc { get; set; } |
| 22 | + public string? InfractionTxt { get; set; } |
| 23 | + public DateOnly? InfractionDt { get; set; } |
| 24 | + public string? PropertyZoneTxt { get; set; } |
| 25 | + public short? AvailableBedroomsQty { get; set; } |
| 26 | + public short? MaxGuestsAllowedQty { get; set; } |
| 27 | + public bool? IsPrincipalResidence { get; set; } |
| 28 | + public bool? IsOwnerLivingOnsite { get; set; } |
| 29 | + public bool? IsOwnerPropertyTenant { get; set; } |
| 30 | + public string? PropertyFolioNo { get; set; } |
| 31 | + public string? PropertyParcelIdentifierNo { get; set; } |
| 32 | + public string? PropertyLegalDescriptionTxt { get; set; } |
| 33 | + public string LicenceStatusType { get; set; } = null!; |
| 34 | + public long ProvidingOrganizationId { get; set; } |
| 35 | + public long? AffectedByPhysicalAddressId { get; set; } |
| 36 | + public DateTime UpdDtm { get; set; } |
| 37 | + public Guid? UpdUserGuid { get; set; } |
| 38 | + public virtual LicenseStatus LicenseStatus { get; set; } = null!; |
| 39 | + } |
| 40 | +} |
0 commit comments