| 1 | /* |
| 2 | * @Author: nevin |
| 3 | * @Date: 2025-01-20 16:36:41 |
| 4 | * @LastEditTime: 2025-02-22 17:47:03 |
| 5 | * @LastEditors: nevin |
| 6 | * @Description: |
| 7 | */ |
| 8 | import { IPaginationMeta } from './interface'; |
| 9 | |
| 10 | export class Pagination<T> { |
| 11 | constructor( |
| 12 | public readonly items: T[], |
| 13 | public readonly meta: IPaginationMeta, |
| 14 | ) {} |
| 15 | } |
| 16 |