8 lines
124 B
TypeScript
8 lines
124 B
TypeScript
|
|
export type Wilayah = {
|
||
|
|
id: number;
|
||
|
|
name: string;
|
||
|
|
kode?: string;
|
||
|
|
notes?: string | null;
|
||
|
|
image?: string | null;
|
||
|
|
};
|