mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
13 lines
182 B
Go
13 lines
182 B
Go
|
package domain
|
||
|
|
||
|
import (
|
||
|
"github.com/caos/zitadel/internal/eventstore/models"
|
||
|
)
|
||
|
|
||
|
type PasswordAgePolicy struct {
|
||
|
models.ObjectRoot
|
||
|
|
||
|
MaxAgeDays uint64
|
||
|
ExpireWarnDays uint64
|
||
|
}
|