Subversion Repositories SmartDukaan

Rev

Rev 26675 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.model;

public class AmountMarginModel {

        private int value;
        private int margin;

        public int getValue() {
                return value;
        }

        public void setValue(int value) {
                this.value = value;
        }

        public int getMargin() {
                return margin;
        }

        public void setMargin(int margin) {
                this.margin = margin;
        }

}