import { BaseModel } from './BaseModel'; import { ShelfShareConfig } from './ShelfShareConfig'; export interface ShelfShareGain extends BaseModel { activityId: string; companyId: string; establishmentId: string; pictureAfterId: string; pictureBeforeId: string; productFrontsAfter: number; productFrontsBefore: number; productId: string; shelfShareConfig: ShelfShareConfig; }