GithubContextHashSet.cs 188 B

123456789
  1. using System.Collections.Generic;
  2. namespace FastGithub.Scanner
  3. {
  4. class GithubContextHashSet : HashSet<GithubContext>
  5. {
  6. public readonly object SyncRoot = new();
  7. }
  8. }