summaryrefslogtreecommitdiff
path: root/src/models/order.ts
blob: c2a419053a488152deebd4497fdf79d80d67ea37 (plain)
1
2
3
4
5
6
export default interface Order {
  id: number;
  created_at: Date;
  public_id: string;
  total: number;
}