mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
14 lines
243 B
Java
14 lines
243 B
Java
package com.bwssystems.HABridge.api;
|
|
|
|
public class UserCreateResponse {
|
|
private String username;
|
|
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
|
|
public void setUsername(String username) {
|
|
this.username = username;
|
|
}
|
|
}
|