Subversion Repositories SmartDukaan

Rev

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 ChartModel {

        public String type;
        public DataModel data;
        public OptionsModel options;

        public String getType() {
                return type;
        }

        public void setType(String type) {
                this.type = type;
        }

        public DataModel getData() {
                return data;
        }

        public void setData(DataModel data) {
                this.data = data;
        }

        public OptionsModel getOptions() {
                return options;
        }

        public void setOptions(OptionsModel options) {
                this.options = options;
        }

}