@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
20 lines (19 loc) • 515 B
TypeScript
import { BaseEntity } from "./base.entity";
import { Job } from "./job.entity";
import { City } from "./city.entity";
import { State } from "./state.entity";
import { Country } from "./country.entity";
export declare class JobLocation extends BaseEntity {
jobId: number;
job: Job;
countryId: number;
countryName: string;
country: Country;
stateId: number;
stateName: string;
state: State;
cityId: number;
cityName: string;
city: City;
locationWiseOpenings: number;
}