Files
MoviconHub/MoviconWebApi/Common/Pagination.cs
2025-09-17 17:22:09 +08:00

34 lines
701 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace MoviconWebApi.Common
{
/// <summary>
/// 分页信息
/// </summary>
public class Pagination
{
/// <summary>
/// 总条数
/// </summary>
public long total { get; set; }
/// <summary>
/// 当前条数
/// </summary>
public int count { get; set; }
/// <summary>
/// 当前页数从1开始
/// </summary>
public int pageNo { get; set; }
/// <summary>
/// 总页数
/// </summary>
public int totalPage { get; set; }
/// <summary>
/// 每页条数
/// </summary>
public int pageSize { get; set; }
}
}