mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 03:27:32 +00:00
13 lines
188 B
Go
13 lines
188 B
Go
package domain
|
|
|
|
import (
|
|
"github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
|
)
|
|
|
|
type PasswordAgePolicy struct {
|
|
models.ObjectRoot
|
|
|
|
MaxAgeDays uint64
|
|
ExpireWarnDays uint64
|
|
}
|