5 lines
79 B
TypeScript
5 lines
79 B
TypeScript
export interface District {
|
|
name: string;
|
|
slug: string;
|
|
url_logo: string;
|
|
}
|