Add: - ervice/api-client/api-portofolio.ts - creens/Portofolio/BoxPortofolioView.tsx - screens/Portofolio/ButtonCreatePortofolio.tsx - create dan show ### No Issue
18 lines
302 B
TypeScript
18 lines
302 B
TypeScript
export interface IMasterBidangBisnis {
|
|
id: string;
|
|
name: string;
|
|
slug: string;
|
|
active: boolean;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
}
|
|
|
|
export interface IMasterSubBidangBisnis {
|
|
id: string;
|
|
name: string;
|
|
slug: string;
|
|
isActive: boolean;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
}
|