10 lines
269 B
C#
10 lines
269 B
C#
|
namespace InnovEnergy.Lib.Protocols.DBus.Protocol.Header;
|
||
|
|
||
|
[Flags]
|
||
|
public enum HeaderFlags : Byte
|
||
|
{
|
||
|
None = 0x00,
|
||
|
NoAutoStart = 0x01,
|
||
|
NoReplyExpected = 0x02,
|
||
|
AllowInteractiveAuthorization = 0x04,
|
||
|
}
|