8 lines
157 B
Go
8 lines
157 B
Go
|
package model
|
||
|
|
||
|
type CheckPermissionRequest struct {
|
||
|
Value []string `json:"value"`
|
||
|
ID string `json:"_id"`
|
||
|
DeviceID string `json:"deviceId"`
|
||
|
}
|