mirror of
https://github.com/KaySar12/NextZen-UserService.git
synced 2025-03-24 11:35:37 +07:00
24 lines
582 B
Go
24 lines
582 B
Go
package model
|
|
|
|
type OMVLogin struct {
|
|
Response struct {
|
|
Authenticated bool `json:"authenticated"`
|
|
Username string `json:"username"`
|
|
Permissions struct {
|
|
Role string `json:"role"`
|
|
} `json:"permissions"`
|
|
SessionID string `json:"sessionid"`
|
|
} `json:"response"`
|
|
Error interface{} `json:"error"`
|
|
}
|
|
type OMVUser struct {
|
|
Response struct {
|
|
Authenticated bool `json:"authenticated"`
|
|
Username string `json:"username"`
|
|
Permissions struct {
|
|
Role string `json:"role"`
|
|
} `json:"permissions"`
|
|
} `json:"response"`
|
|
Error interface{} `json:"error"`
|
|
}
|