mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
UpdatePageモデル作成, コンストラクタ, Getter作成
This commit is contained in:
parent
20c0dbd371
commit
dbbdda79f4
|
@ -0,0 +1,23 @@
|
|||
package one.nem.lacerta.vcs.model.action;
|
||||
|
||||
public class UpdatePage {
|
||||
|
||||
private int index;
|
||||
private String fileName;
|
||||
|
||||
public UpdatePage() {
|
||||
}
|
||||
|
||||
public UpdatePage(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