Details | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.enumuration.auth;
public enum AuthType {
LINK(0),
CHANGE_PASSWORD(1);
private final int value;
private AuthType(int value) {
this.value = value;
}
public int getValue() {
return value;