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