import { Defaults } from "~/defaults"; import { FreeField } from "~/types/freeField"; /** * Represents a variation article. */ export class VariationArticle { /** * The image of the article. */ image?: string; /** * The public id of the article. */ publicId: string = Defaults.Guid; /** * The description of the article */ description = ""; /** * The free fields of the article. */ freeFields: FreeField[] = []; }