mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2025-04-14 04:00:48 +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…
x
Reference in New Issue
Block a user