We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e1a96c commit a0ef810Copy full SHA for a0ef810
1 file changed
src/NuGetGallery.Core/GitHub/NuGetPackageGitHubInformation.cs
@@ -13,7 +13,7 @@ public class NuGetPackageGitHubInformation
13
14
public readonly static NuGetPackageGitHubInformation Empty = new NuGetPackageGitHubInformation(new List<RepositoryInformation>());
15
16
- public NuGetPackageGitHubInformation(IReadOnlyList<RepositoryInformation> repos)
+ public NuGetPackageGitHubInformation(IReadOnlyCollection<RepositoryInformation> repos)
17
{
18
if( repos == null)
19
@@ -29,6 +29,6 @@ public NuGetPackageGitHubInformation(IReadOnlyList<RepositoryInformation> repos)
29
}
30
31
public int TotalRepos { get; }
32
- public IReadOnlyList<RepositoryInformation> Repos { get; }
+ public IReadOnlyCollection<RepositoryInformation> Repos { get; }
33
34
0 commit comments