CreateBranchモデル作成, コンストラクタ, Getter作成

This commit is contained in:
r-ca 2024-01-14 12:27:10 +09:00
parent dc65cdbac8
commit 3f4614cf6b
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -0,0 +1,23 @@
package one.nem.lacerta.vcs.model.action;
public class CreateBranch {
private String branchName;
private String parentBranchName;
public CreateBranch() {
}
public CreateBranch(String branchName, String parentBranchName) {
this.branchName = branchName;
this.parentBranchName = parentBranchName;
}
public String getBranchName() {
return branchName;
}
public String getParentBranchName() {
return parentBranchName;
}
}