Andrew Gazelka
02/12/2019, 5:48 PMAndrew Gazelka
02/12/2019, 5:48 PMdata class Group(
val _id: String,
val priority: Int,
val permissionSections: Map<String, PermissionSection>
) {
data class PermissionSection(
val permissionsEnabled: Set<String> = emptySet(),
val permissionsDisabled: Set<String> = emptySet()
)
}
marstran
02/12/2019, 6:12 PMAndrew Gazelka
02/12/2019, 6:54 PM<https://gist.github.com/andrewgazelka/5e2f45667a3029bb024ef60be4353bbd>