@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
13 lines (12 loc) • 394 B
TypeScript
import { BaseEntity } from "./base.entity";
import { State } from "./state.entity";
import { FreelancerProfile } from "./freelancer-profile.entity";
export declare class Country extends BaseEntity {
countryName: string;
countryIsoCode: string;
countryPhoneCode: string;
currency: string;
isActive: boolean;
states: State[];
freelancerProfile: FreelancerProfile[];
}