FastGithub/FastGithub.Scanner/GithubContextHashSet.cs
2021-06-15 23:51:11 +08:00

10 lines
188 B
C#

using System.Collections.Generic;
namespace FastGithub.Scanner
{
class GithubContextHashSet : HashSet<GithubContext>
{
public readonly object SyncRoot = new();
}
}