message.ts 234 Bytes
Newer Older
李彥志's avatar
李彥志 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
export class Message {

  name: string;
  price: string;
  quantity: string;

  constructor(name: string, price: string, quantity: string) {

      this.name = name;
      this.price = price;
      this.quantity = quantity;

    }

}