package permissions
|
|
// Status is the backend view of a system permission.
|
type Status struct {
|
ID string `json:"id"`
|
Granted bool `json:"granted"`
|
State string `json:"state"`
|
Required bool `json:"required"`
|
}
|
|
const (
|
IDMicrophone = "microphone"
|
IDAccessibility = "accessibility"
|
IDInputMonitoring = "inputMonitoring"
|
IDBackground = "backgroundActivity"
|
)
|