Subversion Repositories SmartDukaan

Rev

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

package com.spice.profitmandi.dao.model;

import java.util.List;

import com.spice.profitmandi.dao.entity.user.Lead;

public class LeadStatusData {
        
        
        private List<Long> data;
        private List<String> backgroundColor;
        private String label;
        
        
        
        
        
        public List<Long> getData() {
                return data;
        }
        public void setData(List<Long> data) {
                this.data = data;
        }
        public List<String> getBackgroundColor() {
                return backgroundColor;
        }
        public void setBackgroundColor(List<String> backgroundColor) {
                this.backgroundColor = backgroundColor;
        }
        public String getLabel() {
                return label;
        }
        public void setLabel(String label) {
                this.label = label;
        }
        
        
        
        

}