10 lines
214 B
C#
10 lines
214 B
C#
|
namespace InnovEnergy.Lib.Protocols.DBus.Daemon;
|
|||
|
|
|||
|
[Flags]
|
|||
|
public enum RequestNameOptions : uint
|
|||
|
{
|
|||
|
None = 0x0,
|
|||
|
AllowReplacement = 0x1,
|
|||
|
ReplaceExisting = 0x2,
|
|||
|
DoNotQueue = 0x4,
|
|||
|
}
|