using CellularManagement.Application.Features.RANConfiguration.Queries.GetRAN_ConfigurationById; namespace CellularManagement.Application.Features.RANConfiguration.Queries.GetRAN_Configurations; /// /// 获取RAN配置列表响应 /// public class GetRAN_ConfigurationsResponse { /// /// 总数量 /// public int TotalCount { get; set; } /// /// 当前页码 /// public int PageNumber { get; set; } /// /// 每页数量 /// public int PageSize { get; set; } /// /// 总页数 /// public int TotalPages { get; set; } /// /// 是否有上一页 /// public bool HasPreviousPage { get; set; } /// /// 是否有下一页 /// public bool HasNextPage { get; set; } /// /// RAN配置列表 /// public List Items { get; set; } = new(); }