mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-04 11:22:17 +08:00
7 lines
96 B
Go
7 lines
96 B
Go
package pagination
|
|
|
|
type Pagination interface {
|
|
GetPageNumber() int32
|
|
GetShowNumber() int32
|
|
}
|