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