34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
// 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.
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.AspNetCore.Mvc.ApiExplorer
|
|
{
|
|
/// <summary>
|
|
/// Represents a group of related apis.
|
|
/// </summary>
|
|
public class ApiDescriptionGroup
|
|
{
|
|
/// <summary>
|
|
/// Creates a new <see cref="ApiDescriptionGroup"/>.
|
|
/// </summary>
|
|
/// <param name="groupName">The group name.</param>
|
|
/// <param name="items">A collection of <see cref="ApiDescription"/> items for this group.</param>
|
|
public ApiDescriptionGroup(string groupName, IReadOnlyList<ApiDescription> items)
|
|
{
|
|
GroupName = groupName;
|
|
Items = items;
|
|
}
|
|
|
|
/// <summary>
|
|
/// The group name.
|
|
/// </summary>
|
|
public string GroupName { get; }
|
|
|
|
/// <summary>
|
|
/// A collection of <see cref="ApiDescription"/> items for this group.
|
|
/// </summary>
|
|
public IReadOnlyList<ApiDescription> Items { get; }
|
|
}
|
|
} |