import { Defaults } from "~/defaults"; import { VariationGroupValue } from "./variationGroupValue"; /** * Represents a variation group. */ export class VariationGroup { /** * The public id of the variation group. */ publicId: string = Defaults.Guid; /** * The free field that groups the articles in this variation group. */ freeField = ""; /** * The name of the variation group. */ name = ""; /** * The articles that are part of this variation group. */ values: VariationGroupValue[] = []; }