Portofolio
#feat - Create porto - Edit Porto - Upload gambar background profile - List user - Search user ## No issuue
This commit is contained in:
13
src/app_modules/home/model/interface.ts
Normal file
13
src/app_modules/home/model/interface.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { MODEL_PROFILE } from "@/app_modules/katalog/profile/model/interface";
|
||||
|
||||
export interface MODEL_USER {
|
||||
id: string;
|
||||
username: string;
|
||||
nomor: string;
|
||||
active: boolean;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
masterUserRoleId: string;
|
||||
Profile: MODEL_PROFILE
|
||||
}
|
||||
|
||||
20
src/app_modules/home/model/user_profile.ts
Normal file
20
src/app_modules/home/model/user_profile.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import { MODEL_IMAGES } from "@/app_modules/models/interface";
|
||||
|
||||
export interface MODEL_PROFILE_OLD {
|
||||
id: string;
|
||||
username: string;
|
||||
nomor: string;
|
||||
Profile: {
|
||||
id: string;
|
||||
alamat: string;
|
||||
email: string;
|
||||
jenisKelamin: string;
|
||||
name: string;
|
||||
imagesId: string
|
||||
ImageProfile: {
|
||||
url: string;
|
||||
}
|
||||
imagesBackgroundId: string,
|
||||
ImagesBackground: MODEL_IMAGES
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user