14 lines
259 B
C#
14 lines
259 B
C#
|
|
||
|
namespace InnovEnergy.Lib.Protocols.DBus.Protocol.Header;
|
||
|
|
||
|
public enum FieldCode : byte
|
||
|
{
|
||
|
Path = 1,
|
||
|
Interface = 2,
|
||
|
Member = 3,
|
||
|
ErrorName = 4,
|
||
|
ReplySerial = 5,
|
||
|
Destination = 6,
|
||
|
Sender = 7,
|
||
|
Signature = 8
|
||
|
}
|