feat: add shared to create product

This commit is contained in:
puriphatt 2025-01-07 10:16:58 +07:00
parent be1559ac4f
commit 186d0ee726
3 changed files with 25 additions and 3 deletions

View file

@ -178,6 +178,7 @@ export interface Product {
imageUrl: string;
installmentNo: number;
document?: string[];
shared: boolean;
}
export interface ProductCreate {
@ -198,6 +199,7 @@ export interface ProductCreate {
document?: string[];
image?: File;
status?: Status;
shared: boolean;
}
export interface ProductUpdate {