ns2-front-module-common
Version:
NS2 common module
34 lines • 1.04 kB
JavaScript
var RealtorModel = (function () {
function RealtorModel() {
this.guid = '';
this.firstname = '';
this.lastname = '';
this.email = '';
this.experience = 0;
this.avatar_guid = '';
this.geo_guid = '';
this.description = '';
this.is_online = false;
this.phones = [];
this.specializations = [];
this.districts = [];
this.is_agency = false;
this.agency_position = '';
this.agency_title = '';
this.can_work_other_city = false;
this.birthday = 0;
this.site_url = '';
this.socials = [];
// Ранг на английском
this.rank = '';
// Ранг на русском
this.rank_title = '';
// Информация для покупателя
this.customer_info = '';
// На модерации
this.on_moderate = false;
}
return RealtorModel;
}());
export { RealtorModel };
//# sourceMappingURL=realtor.model.js.map