mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
9892fd92b6
* refactor: drop unused code * refactor: drop unused code
23 lines
400 B
Go
23 lines
400 B
Go
package model
|
|
|
|
import (
|
|
es_models "github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
|
)
|
|
|
|
type ProjectGrant struct {
|
|
es_models.ObjectRoot
|
|
|
|
GrantID string
|
|
GrantedOrgID string
|
|
State ProjectGrantState
|
|
RoleKeys []string
|
|
Members []*ProjectGrantMember
|
|
}
|
|
|
|
type ProjectGrantState int32
|
|
|
|
const (
|
|
ProjectGrantStateActive ProjectGrantState = iota
|
|
ProjectGrantStateInactive
|
|
)
|