You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
532 B
20 lines
532 B
export class Orders {
|
|
public orderid: number;
|
|
public orderuserid: number;
|
|
public orderamount: number;
|
|
public ordershipaddress: string;
|
|
public ordershipaddress2: string;
|
|
public ordercity: string;
|
|
public orderzip: string;
|
|
public orderstate: string;
|
|
public ordercountry: string;
|
|
public orderphone: string;
|
|
public ordershippingcost: number;
|
|
public ordertax: number;
|
|
public orderemail: string;
|
|
public orderdate: Date;
|
|
public ordershipped: string;
|
|
public ordertrackingnumber: string;
|
|
|
|
constructor() {}
|
|
}
|