#Job admin
- Tampilan user done - Tampilan admin done git commit -m
This commit is contained in:
20
src/app_modules/job/model/interface.ts
Normal file
20
src/app_modules/job/model/interface.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import { MODEL_USER } from "@/app_modules/home/model/interface";
|
||||
import { MODEL_IMAGES, MODEL_NEW_DEFAULT_MASTER } from "@/app_modules/model_global/interface";
|
||||
|
||||
export interface MODEL_JOB {
|
||||
id: string;
|
||||
title: string
|
||||
content: string;
|
||||
deskripsi: string
|
||||
isActive: boolean;
|
||||
isArsip: boolean;
|
||||
createdAt: Date;
|
||||
updateAt: Date;
|
||||
catatan: string;
|
||||
authorId: string;
|
||||
Author: MODEL_USER;
|
||||
Images: MODEL_IMAGES
|
||||
imagesId: string
|
||||
MasterStatus: MODEL_NEW_DEFAULT_MASTER
|
||||
masterStatusId: string
|
||||
}
|
||||
Reference in New Issue
Block a user