mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-07 22:59:14 +08:00
14 lines
183 B
C#
14 lines
183 B
C#
using System;
|
|
|
|
namespace Eavesdrop
|
|
{
|
|
[Flags]
|
|
public enum Interceptors
|
|
{
|
|
None = 0,
|
|
HTTP = 1,
|
|
HTTPS = 2,
|
|
|
|
Default = (HTTP | HTTPS)
|
|
}
|
|
} |