Files
HRMS/hrmsEjb/wenrgise/common/utility/MessageKey.java
2025-07-28 13:56:49 +05:30

22 lines
350 B
Java

package wenrgise.common.utility;
import java.io.Serializable;
public class MessageKey implements Serializable {
private String key;
public MessageKey() {}
public MessageKey(String key) {
this.key = key;
}
public String getKey() {
return this.key;
}
public void setKey(String newKey) {
this.key = newKey;
}
}