namespace InnovEnergy.Lib.Protocols.DBus.Protocol.Header;

public enum Endian : Byte
{
    Little    = (Byte)'l',
    Big       = (Byte)'B',
}