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