FastGithub/FastGithub.FlowAnalyze/FlowType.cs
2021-10-28 17:43:26 +08:00

19 lines
292 B
C#

namespace FastGithub.FlowAnalyze
{
/// <summary>
/// 流量类型
/// </summary>
public enum FlowType
{
/// <summary>
/// 读取
/// </summary>
Read,
/// <summary>
/// 写入
/// </summary>
Wirte
}
}