Subversion Repositories SmartDukaan

Rev

Rev 26055 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

public class TitleModel {
        public Boolean display;
        public String text;
        public int fontSize;
        public String fontColor;

        public Boolean getDisplay() {
                return display;
        }

        public void setDisplay(Boolean display) {
                this.display = display;
        }

        public String getText() {
                return text;
        }

        public void setText(String text) {
                this.text = text;
        }

        public int getFontSize() {
                return fontSize;
        }

        public void setFontSize(int fontSize) {
                this.fontSize = fontSize;
        }

        public String getFontColor() {
                return fontColor;
        }

        public void setFontColor(String fontColor) {
                this.fontColor = fontColor;
        }
        
        

}