mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-16 18:24:36 +00:00
13 lines
263 B
Java
13 lines
263 B
Java
package com.bwssystems.HABridge.plugins.hass;
|
|
|
|
public class HassAuth {
|
|
boolean legacyauth;
|
|
|
|
public boolean isLegacyauth() {
|
|
return legacyauth;
|
|
}
|
|
|
|
public void setLegacyauth(boolean legacyauth) {
|
|
this.legacyauth = legacyauth;
|
|
}
|
|
} |