<?php/*------------------------------------------------------------------------# SM Mega Menu - Version 3.2.0# Copyright (c) 2015 YouTech Company. All Rights Reserved.# @license - Copyrighted Commercial Software# Author: YouTech Company# Websites: http://www.magentech.com-------------------------------------------------------------------------*/namespaceSm\MegaMenu\Api\Data;interfaceMenuGroupInterface{/**#@+ * Constants for keys of data array. Identical to the name of the getter in snake case */constGROUP_ID='group_id';constTITLE='title';constSTATUS='status';constCONTENT='content';publicfunctiongetGroupId();publicfunctiongetTitle();publicfunctiongetStatus();publicfunctiongetContent();publicfunctionsetGroupId($groupId);publicfunctionsetTitle($title);publicfunctionsetStatus($status);publicfunctionsetContent($content);}