Files
Symcon_Belevo_Energiemanage…/Abrechnung/module.php
2025-11-03 15:26:55 +01:00

24 lines
449 B
PHP

<?php
class Abrechnung extends IPSModule
{
public function Create()
{
// Never delete this line!
parent::Create();
$this->RegisterPropertyString('Users', '[]');
$this->RegisterPropertyString('PowerMeters', '[]');
$this->RegisterPropertyString('WaterMeters', '[]');
$this->RegisterPropertyString('Tariffs', '[]');
}
public function ApplyChanges()
{
parent::ApplyChanges();
}
}