mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
16 lines
211 B
Go
16 lines
211 B
Go
|
package domain
|
||
|
|
||
|
import (
|
||
|
"github.com/caos/zitadel/internal/eventstore/v1/models"
|
||
|
)
|
||
|
|
||
|
type PrivacyPolicy struct {
|
||
|
models.ObjectRoot
|
||
|
|
||
|
State PolicyState
|
||
|
Default bool
|
||
|
|
||
|
TOSLink string
|
||
|
PrivacyLink string
|
||
|
}
|