mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
InsertPageモデル作成, コンストラクタ, Getter作成
This commit is contained in:
parent
ccaed8387a
commit
20c0dbd371
|
@ -0,0 +1,23 @@
|
|||
package one.nem.lacerta.vcs.model.action;
|
||||
|
||||
public class InsertPage {
|
||||
|
||||
private int index;
|
||||
private String fileName;
|
||||
|
||||
public InsertPage() {
|
||||
}
|
||||
|
||||
public InsertPage(int index, String fileName) {
|
||||
this.index = index;
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public int getIndex() {
|
||||
return index;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user