summaryrefslogtreecommitdiff
path: root/src-migrate/types/promotionProgram.ts
blob: c02cbfd09df5e7782a308fe2808fb876435cf0e8 (plain)
1
2
3
4
5
6
7
8
9
10
export type IPromotionProgram = {
  id: number;
  name: string;
  start_time: string;
  end_time: string;
  applies_to: string;
  time_left: number;
  image:string;
  banner:string;
};