Subversion Repositories SmartDukaan

Rev

Rev 26055 | 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 LegendModel {

        private String position;

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

        public String getPosition() {
                return position;
        }

        public void setPosition(String position) {
                this.position = position;
        }
        
        
}