export interface IProductSizesV2 {
    code: string;
    name: string;
    price: number;
    isDefault: boolean;
}
