import { CountryEnum } from '../nichandle/CountryEnum';
/** Hosting location */
export interface PccZone {
    /** Name of City */
    city: string;
    /** Country code */
    countryCode: CountryEnum;
    /** Id of pccZone */
    id: number;
    /** Name of pccZone */
    pccZone: string;
    /** Region name */
    region: string;
    /** Location name */
    regionLocation: string;
}
//# sourceMappingURL=PccZone.d.ts.map