|
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
#nullable disable
using System.Collections.Generic;
using Newtonsoft.Json;
namespace NuGet.Protocol.Model
{
/// <summary>
/// Source: https://docs.microsoft.com/en-us/nuget/api/registration-base-url-resource#registration-index
/// </summary>
internal class RegistrationIndex
{
[JsonProperty("items")]
public List<RegistrationPage> Items { get; set; }
}
}
|