import { SelectedBranchesModel } from "./selected-branches-model"; export interface CreatePromoModel { type?: string; nameEn?: string; nameAr?: string; descEn?: string; descAr?: string; activationDate?: string; expirationDate?: string; valueType?: string; value?: number; currency?: string; usageType?: string; amount?: number; source?: string; fileURL?: string; redemptionLimitation?: number; accumulationChannels?: number[]; redemptionChannels?: number[]; viewableChannels?: number[]; selectedBranches?: SelectedBranchesModel[]; allBranches?: boolean; }