@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
13 lines (12 loc) • 328 B
TypeScript
import { BaseEntity } from "./base.entity";
import { Country } from "./country.entity";
import { State } from "./state.entity";
export declare class City extends BaseEntity {
countryId: number;
country: Country;
stateId: number;
state: State;
cityCode: string;
cityName: string;
isActive: boolean;
}