travopti/frontend/src/app/interfaces/region.interface.ts
2020-06-14 20:57:09 +02:00

7 lines
129 B
TypeScript

/** Represents the structure of a region. */
export interface Region {
region_id: number;
name: string;
country: string;
}