🎉 It works

This commit is contained in:
Dan Jones 2024-05-03 11:34:39 -05:00
commit 107968803c
5 changed files with 114 additions and 0 deletions

8
models/paging.go Normal file
View file

@ -0,0 +1,8 @@
package models
type Paging struct {
Count uint32
Total uint32
Page uint32
Pages uint32
}