summaryrefslogtreecommitdiff
path: root/src-migrate/types/voucher.ts
blob: d3140372833c56e7287438d722276f27ea127a6b (plain)
1
2
3
4
5
6
7
8
9
export interface IVoucher {
  id: number;
  image: string;
  name: string;
  code: string;
  voucher_category: [];
  description: string | false;
  remaining_time: string;
}