You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
|
|
|
|
using CellularManagement.Application.Features.RANConfiguration.Queries.GetRAN_ConfigurationById;
|
|
|
|
namespace CellularManagement.Application.Features.RANConfiguration.Queries.GetRAN_Configurations;
|
|
|
|
/// <summary>
|
|
/// 获取RAN配置列表响应
|
|
/// </summary>
|
|
public class GetRAN_ConfigurationsResponse
|
|
{
|
|
/// <summary>
|
|
/// 总数量
|
|
/// </summary>
|
|
public int TotalCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前页码
|
|
/// </summary>
|
|
public int PageNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 每页数量
|
|
/// </summary>
|
|
public int PageSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// 总页数
|
|
/// </summary>
|
|
public int TotalPages { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否有上一页
|
|
/// </summary>
|
|
public bool HasPreviousPage { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否有下一页
|
|
/// </summary>
|
|
public bool HasNextPage { get; set; }
|
|
|
|
/// <summary>
|
|
/// RAN配置列表
|
|
/// </summary>
|
|
public List<GetRAN_ConfigurationByIdResponse> Items { get; set; } = new();
|
|
}
|