satupeta-main/shared/types/feedback.ts
2026-01-27 09:31:12 +07:00

16 lines
286 B
TypeScript

export type Feedback = {
id: string;
score: number;
tujuan_tercapai: boolean;
tujuan_ditemukan: boolean;
tujuan: string;
sektor: string;
email: string;
saran: string;
source_url: string;
source_access: string;
notes: string;
gender: number;
datetime: Date;
};