Subversion Repositories SmartDukaan

Rev

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

package com.spice.profitmandi.dao.enumuration.dtr;

public enum ThirdParty {
        GADGET_COP(0);
        private int value;
        private ThirdParty(int value) {
                this.value = value;
        }
        public int getValue() {
                return value;
        }
}