12 lines
172 B
C#
12 lines
172 B
C#
using System;
|
|
|
|
namespace Disco.Services.Interop.DiscoServices
|
|
{
|
|
[Flags]
|
|
public enum AuthenticationSessionScope
|
|
{
|
|
Ping = 1,
|
|
Host = 2,
|
|
}
|
|
}
|