6 lines
108 B
TypeScript
6 lines
108 B
TypeScript
export class CityModel {
|
|
id: number = -1
|
|
name: string = ""
|
|
country: string = ""
|
|
image: string = ""
|
|
} |