// Wat
export class SecondaryNav {
	parent: string;
	type: string;
	menu?: [{
		id: number;
		name: string;
		urlkey: string;
		description: string;
		image: string;
		parentId: number;
		productCount: number
	}]

	constructor(options: {
        parent?: string;
		type?: string;
		menu?: [{
			id: number;
			name: string;
			urlkey: string;
			description: string;
			image: string;
			parentId: number;
			productCount: number
		}]

    } = {}) {
        this.parent = options.parent || '';
        this.type = options.type || '';
        this.menu = options.menu || [{
			id: 1337,
			name: '',
			urlkey: '',
			description: '',
			image: '',
			parentId: 7,
			productCount: 2
		}];
    }
}