satupeta-main/shared/types/wilayah.ts
2026-02-23 12:21:05 +07:00

8 lines
124 B
TypeScript
Executable File

export type Wilayah = {
id: number;
name: string;
kode?: string;
notes?: string | null;
image?: string | null;
};