all
This commit is contained in:
14
Downloads/Voltaserve/api/model/group_model.go
Normal file
14
Downloads/Voltaserve/api/model/group_model.go
Normal file
@ -0,0 +1,14 @@
|
||||
package model
|
||||
|
||||
type Group interface {
|
||||
GetID() string
|
||||
GetName() string
|
||||
GetOrganizationID() string
|
||||
GetUserPermissions() []CoreUserPermission
|
||||
GetGroupPermissions() []CoreGroupPermission
|
||||
GetUsers() []string
|
||||
GetCreateTime() string
|
||||
GetUpdateTime() *string
|
||||
SetName(string)
|
||||
SetUpdateTime(*string)
|
||||
}
|
Reference in New Issue
Block a user