UNPKG

restaurantt

Version:

This package contains a backend of what would be the logic of a restaurant software

24 lines (16 loc) 283 B
const { DTOCategory } = require("./DTOCategory"); class DTODish { IDDishh=0; NameD=""; Category=new DTOCategory(); DescriptionD=""; ImgD=""; PriceD=0; CostD=0; QuantityAD=0; constructor() { } } module.exports = { DTODish };