# Event Join

## feat
- Join event
- kontribusi event
- histoty in progress
### No Issue
This commit is contained in:
2024-01-29 22:03:27 +08:00
parent bec87028fd
commit ca9214d9e0
109 changed files with 2932 additions and 515 deletions

View File

@@ -0,0 +1,32 @@
import { MODEL_USER } from "@/app_modules/home/model/interface";
import { MODEL_DEFAULT_MASTER } 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;
eventMaster_TipeAcaraId: number;
EventMaster_TipeAcara: MODEL_DEFAULT_MASTER;
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;
}