mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
14 lines
290 B
Go
14 lines
290 B
Go
package v1
|
|
|
|
type UserAgentsViewModel struct {
|
|
Data []*UserAgentEntry `json:"data"`
|
|
TotalPages int `json:"total_pages"`
|
|
}
|
|
|
|
type UserAgentEntry struct {
|
|
Id string `json:"id"`
|
|
Editor string `json:"editor"`
|
|
Os string `json:"os"`
|
|
Value string `json:"value"`
|
|
}
|