8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
export declare class UpsertUserProductDto {
|
|
productId: number;
|
|
note?: string;
|
|
preferredBrand?: string;
|
|
preferredStore?: string;
|
|
isPrivate?: boolean;
|
|
}
|