Producto.models.ts 217 B

1234567891011
  1. export class Producto {
  2. id: number|undefined;
  3. nombre: string|undefined;
  4. precio: string|undefined;
  5. existencia: number|undefined;
  6. constructor(json?: Partial<Producto>) {
  7. Object.assign(this, json);
  8. }
  9. }