Files
hipmi/src/app_modules/event/model/interface.ts
Bagasbanuna02 5b8cd3a4b6 QC Investasi
# fix
Tampilan admin investasi
Tampilan admin donasi
## No issuee
2024-05-31 16:41:34 +08:00

33 lines
783 B
TypeScript

import { MODEL_USER } from "@/app_modules/home/model/interface";
import { MODEL_DEFAULT_MASTER_OLD } from "@/app_modules/model_global/interface";
export interface MODEL_EVENT {
id: string;
title: string;
lokasi: string;
tanggal: Date;
deskripsi: string;
active: boolean;
createdAt: Date;
updatedAt: Date;
catatan: string;
authorId: string;
Author: MODEL_USER;
eventMaster_StatusId: string;
EventMaster_Status: MODEL_DEFAULT_MASTER_OLD;
eventMaster_TipeAcaraId: number;
EventMaster_TipeAcara: MODEL_DEFAULT_MASTER_OLD;
Event_Peserta: MODEL_EVENT_PESERTA[];
}
export interface MODEL_EVENT_PESERTA {
id: string;
active: boolean;
createdAt: Date;
updatedAt: Date;
userId: string;
User: MODEL_USER;
eventId: string;
Event: MODEL_EVENT;
}