29 lines
525 B
Java
29 lines
525 B
Java
package com.nttdata.calender.presets;
|
|
|
|
public class RenamePresetRequest {
|
|
private String newName;
|
|
private String id;
|
|
|
|
public RenamePresetRequest(String newName, String id) {
|
|
this.newName = newName;
|
|
this.id = id;
|
|
}
|
|
|
|
public String getNewName() {
|
|
return this.newName;
|
|
}
|
|
|
|
public void setNewName(String newName) {
|
|
this.newName = newName;
|
|
}
|
|
|
|
public String getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
}
|