proxy-server-sharp/ProxyServerSharp/Enums/AuthenticationType.cs

15 lines
257 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProxyServerSharp.Enums
{
public enum AuthenticationType
{
None = 0x00,
UsernamePassword = 0x02
}
}