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