UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

19 lines (18 loc) 579 B
import { BaseEntity } from "./base.entity"; import { Country } from "./country.entity"; import { State } from "./state.entity"; import { FreelancerProfile } from "./freelancer-profile.entity"; import { CompanyProfile } from "./company-profile.entity"; export declare class City extends BaseEntity { countryId: number; country: Country; stateId: number; state: State; cityCode: string; cityName: string; isActive: boolean; latitude: number; longitude: number; freelancerProfile: FreelancerProfile[]; companyProfile: CompanyProfile[]; }