mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2025-04-14 04:00:48 +00:00
DeletePageモデル作成, コンストラクタ, Getter作成
This commit is contained in:
parent
dbbdda79f4
commit
dc65cdbac8
@ -0,0 +1,17 @@
|
||||
package one.nem.lacerta.vcs.model.action.common;
|
||||
|
||||
public class DeletePage {
|
||||
|
||||
private int index;
|
||||
|
||||
public DeletePage() {
|
||||
}
|
||||
|
||||
public DeletePage(int index) {
|
||||
this.index = index;
|
||||
}
|
||||
|
||||
public int getIndex() {
|
||||
return index;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user