UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

18 lines (17 loc) 573 B
import { BaseEntity } from "./base.entity"; import { Country } from "./country.entity"; import { City } from "./city.entity"; import { FreelancerProfile } from "./freelancer-profile.entity"; import { CompanyProfile } from "./company-profile.entity"; export declare class State extends BaseEntity { countryId: number; country: Country; cities: City[]; stateName: string; stateCode: string; isActive: boolean; centerLatitude: number; centerLongitude: number; freelancerProfile: FreelancerProfile[]; companyProfile: CompanyProfile[]; }