UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

12 lines (11 loc) 310 B
import { BaseEntity } from "./base.entity"; import { Country } from "./country.entity"; import { City } from "./city.entity"; export declare class State extends BaseEntity { countryId: number; country: Country; cities: City[]; stateName: string; stateCode: string; isActive: boolean; }