9 lines
355 B
C#
9 lines
355 B
C#
using NuGet.Versioning;
|
|
|
|
namespace NuGet.Models;
|
|
|
|
public record CatalogEntry(string Id, NuGetVersion Version, DependencyGroup[] DependencyGroups, PackageType[]? PackageTypes,
|
|
CatalogPackageEntry[] PackageEntries,
|
|
bool Serviceable = true);
|
|
|
|
public record CatalogPackageEntry(string Name, string FullName, long CompressedLength, long Length); |