src/app/core/models/country.ts
Properties |
| id |
id:
|
Type : string
|
|
Defined in src/app/core/models/country.ts:4
|
| iso_name |
iso_name:
|
Type : string
|
|
Defined in src/app/core/models/country.ts:5
|
| name |
name:
|
Type : string
|
|
Defined in src/app/core/models/country.ts:6
|
| states |
states:
|
Type : CState[]
|
|
Defined in src/app/core/models/country.ts:7
|
import { CState } from './state';
export class Country {
id: string;
iso_name: string;
name: string;
states: CState[];
}