15 lines
454 B
C#
15 lines
454 B
C#
namespace InnovEnergy.Lib.Victron.VeDBus;
|
|
|
|
public static class VeDBusApi
|
|
{
|
|
public const String VePrefix = "com.victronenergy.";
|
|
public const String Interface = "com.victronenergy.BusItem";
|
|
|
|
public const String GetText = "GetText";
|
|
public const String GetValue = "GetValue";
|
|
public const String GetItems = "GetItems";
|
|
public const String SetValue = "SetValue";
|
|
|
|
public const String PropertiesChanged = "PropertiesChanged";
|
|
|
|
} |