Subversion Repositories SmartDukaan

Rev

Rev 21730 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.web.res;

public class DetailedSpecs
{
    private String title;
        private Specs[] specs;
        
        public String getTitle() {
                return title;
        }
        public void setTitle(String title) {
                this.title = title;
        }
        public Specs[] getSpecs() {
                return specs;
        }
        public void setSpecs(Specs[] specs) {
                this.specs = specs;
        }
}