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