8 lines
143 B
C#
8 lines
143 B
C#
|
|
||
|
namespace InnovEnergy.Lib.Protocols.DBus.Protocol.Header;
|
||
|
|
||
|
public enum Endian : Byte
|
||
|
{
|
||
|
Little = (Byte)'l',
|
||
|
Big = (Byte)'B',
|
||
|
}
|