Allnet Lite Power On Support

This commit is contained in:
Keeboy99
2025-05-31 07:15:35 +12:00
parent 8e83527e82
commit 5e5365d22b
4 changed files with 103 additions and 10 deletions

View File

@ -378,6 +378,11 @@ class AllnetConfig:
return CoreConfig.get_config_field(
self.__config, "core", "allnet", "save_billing", default=False
)
@property
def allnet_lite_key(self) -> bool:
return CoreConfig.get_config_field(
self.__config, "core", "allnet", "allnet_lite_key", default=[]
)
class BillingConfig:
def __init__(self, parent_config: "CoreConfig") -> None: