mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +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…
Reference in New Issue
Block a user