# Event Join
## feat - Join event - kontribusi event - histoty in progress ### No Issue
This commit is contained in:
14
src/app_modules/model_global/interface.ts
Normal file
14
src/app_modules/model_global/interface.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
export interface MODEL_IMAGES {
|
||||
id: string;
|
||||
url: string;
|
||||
label: string
|
||||
active: boolean;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
}
|
||||
|
||||
export interface MODEL_DEFAULT_MASTER {
|
||||
id: string,
|
||||
name: string,
|
||||
active: boolean,
|
||||
}
|
||||
5
src/app_modules/model_global/model_default_master.ts
Normal file
5
src/app_modules/model_global/model_default_master.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export interface MODEL_DEFAULT_MASTER_OLD {
|
||||
id: string,
|
||||
name: string,
|
||||
active: boolean,
|
||||
}
|
||||
28
src/app_modules/model_global/portofolio.ts
Normal file
28
src/app_modules/model_global/portofolio.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
export interface LIST_PORTOFOLIO {
|
||||
id: string;
|
||||
namaBisnis: string;
|
||||
alamatKantor: string;
|
||||
tlpn: string;
|
||||
deskripssi: string;
|
||||
masterBidangBisnisId: string;
|
||||
active: boolean;
|
||||
profileId: string
|
||||
}
|
||||
|
||||
export interface BIDANG_BISNIS_OLD {
|
||||
id: string;
|
||||
name: string;
|
||||
active: boolean;
|
||||
}
|
||||
|
||||
export interface MODEL_PORTOFOLIO_OLD {
|
||||
id: string;
|
||||
namaBisnis: string;
|
||||
alamatKantor: string;
|
||||
deskripsi: string;
|
||||
tlpn: string;
|
||||
active: boolean;
|
||||
MasterBidangBisnis: BIDANG_BISNIS_OLD;
|
||||
masterBidangBisnisId: string
|
||||
profileId: string,
|
||||
}
|
||||
Reference in New Issue
Block a user