diff --git a/vcs/src/main/java/one/nem/lacerta/vcs/model/action/InsertPage.java b/vcs/src/main/java/one/nem/lacerta/vcs/model/action/InsertPage.java new file mode 100644 index 00000000..f57606a2 --- /dev/null +++ b/vcs/src/main/java/one/nem/lacerta/vcs/model/action/InsertPage.java @@ -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; + } +}