Skip to content

Commit a0ef810

Browse files
committed
[GH Usage] Changed IReadOnlyList to IReadOnlyCollection
1 parent 7e1a96c commit a0ef810

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/NuGetGallery.Core/GitHub/NuGetPackageGitHubInformation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class NuGetPackageGitHubInformation
1313

1414
public readonly static NuGetPackageGitHubInformation Empty = new NuGetPackageGitHubInformation(new List<RepositoryInformation>());
1515

16-
public NuGetPackageGitHubInformation(IReadOnlyList<RepositoryInformation> repos)
16+
public NuGetPackageGitHubInformation(IReadOnlyCollection<RepositoryInformation> repos)
1717
{
1818
if( repos == null)
1919
{
@@ -29,6 +29,6 @@ public NuGetPackageGitHubInformation(IReadOnlyList<RepositoryInformation> repos)
2929
}
3030

3131
public int TotalRepos { get; }
32-
public IReadOnlyList<RepositoryInformation> Repos { get; }
32+
public IReadOnlyCollection<RepositoryInformation> Repos { get; }
3333
}
3434
}

0 commit comments

Comments
 (0)