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