Subversion Repositories SmartDukaan

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

public class PluginsModel {

        public LegendModel legend;

        public LegendModel getLegend() {
                return legend;
        }

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

        @Override
        public String toString() {
                return "PluginsModel [legend=" + legend + "]";
        }
        
        
        
}