export interface IQuestionOptionsV2 {
    active: boolean;
    additionalPrice: number;
    code?: string;
    createdAt: Date;
    createdBy: string;
    description: string;
    discount: number;
    id: string;
    imageURL: string;
    index?: number;
    max: number;
    min: number;
    name?: string;
    preparationPlaceId: string;
    price?: number;
    productId?: string;
    promotional: boolean;
    updatedAt: Date;
    updatedBy: string;
    version: '1.0.2';
}
