import { FilterOperationDataType } from '../../filters'; export type RewardablePropertyValue = string | boolean | number; export interface IRewardablePropertyDTO { key: string; type: string; values: RewardablePropertyValue[]; dataType: FilterOperationDataType; strict: boolean; uses: number; } export interface IRewardablePropertyExtendedDTO extends IRewardablePropertyDTO { label?: string; description?: string; }