fixxed
This commit is contained in:
parent
1c8c4b61d9
commit
8813942cc5
1 changed files with 11 additions and 0 deletions
|
@ -6,6 +6,9 @@ import javax.validation.constraints.NotNull;
|
|||
|
||||
public class RoomSaveRequest {
|
||||
|
||||
/** Room identifier */
|
||||
private long id;
|
||||
|
||||
@NotNull private Room.Icon icon;
|
||||
|
||||
/**
|
||||
|
@ -19,6 +22,14 @@ public class RoomSaveRequest {
|
|||
/** The user given name of this room (e.g. 'Master bedroom') */
|
||||
@NotNull private String name;
|
||||
|
||||
public long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue