7 lines
129 B
TypeScript
7 lines
129 B
TypeScript
/** Represents the structure of a region. */
|
|
export interface Region {
|
|
region_id: number;
|
|
name: string;
|
|
country: string;
|
|
}
|