Subversion Repositories SmartDukaan

Rev

Rev 27706 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

public class OptionsModel {

        public LegendModel legend;
        public TitleModel title;

        public LegendModel getLegend() {
                return legend;
        }

        public void setLegend(LegendModel legend) {
                this.legend = legend;
        }

        public TitleModel getTitle() {
                return title;
        }

        public void setTitle(TitleModel title) {
                this.title = title;
        }

}