Merge crud-device
This commit is contained in:
@ -0,0 +1,12 @@
|
||||
package com.tommasoberlose.anotherwidget.models
|
||||
|
||||
class GlanceProvider(
|
||||
val id: String,
|
||||
val title: String,
|
||||
val icon: Int,
|
||||
val label: String = "",
|
||||
val enabled: Boolean = false,
|
||||
val isPermissionRequired: Boolean = false,
|
||||
val isPermissionGranted: (() -> Boolean)? = null,
|
||||
val requestPermission: (() -> Unit)? = null
|
||||
)
|
Reference in New Issue
Block a user