mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
ActionBaseを作成
This commit is contained in:
parent
362eda782d
commit
2d7dfe1b5b
|
@ -0,0 +1,22 @@
|
|||
package one.nem.lacerta.vcs.model.action.common;
|
||||
|
||||
import one.nem.lacerta.vcs.ActionType;
|
||||
|
||||
public class ActionBase {
|
||||
private ActionType actionType;
|
||||
|
||||
public ActionBase() {
|
||||
}
|
||||
|
||||
public ActionBase(ActionType actionType) {
|
||||
this.actionType = actionType;
|
||||
}
|
||||
|
||||
public ActionType getActionType() {
|
||||
return actionType;
|
||||
}
|
||||
|
||||
public void setActionType(ActionType actionType) {
|
||||
this.actionType = actionType;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user