cmp-aws-database
Version:
The package "cmp-aws-database" is for its database, which defines global tables. These tables are designed to be imported and used across multiple applications of "craft-my-plate."
18 lines (17 loc) • 460 B
TypeScript
import { BaseModel } from "../../base-model";
export declare class CutleryModel extends BaseModel {
cutleryId: string;
platterId: string;
cutleryName?: string;
cutleryType?: string;
cutleryDescription?: string;
cutleryImageUrl?: string;
maxPrice?: number;
minPrice?: number;
quantityUnit?: string;
minQuantity?: number;
maxQuantity?: number;
active?: string;
isIncluded?: boolean;
isServing?: boolean;
}