17 lines
352 B
Go
17 lines
352 B
Go
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)
|
|
}
|