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