mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-04 12:45:15 +00:00

* fix: move eventstore pkgs * fix: move eventstore pkgs * fix: remove v2 view * fix: remove v2 view
25 lines
389 B
Go
25 lines
389 B
Go
package domain
|
|
|
|
import "github.com/caos/zitadel/internal/eventstore/v1/models"
|
|
|
|
type Machine struct {
|
|
models.ObjectRoot
|
|
|
|
Username string
|
|
State UserState
|
|
Name string
|
|
Description string
|
|
}
|
|
|
|
func (m Machine) GetUsername() string {
|
|
return m.Username
|
|
}
|
|
|
|
func (m Machine) GetState() UserState {
|
|
return m.State
|
|
}
|
|
|
|
func (sa *Machine) IsValid() bool {
|
|
return sa.Name != ""
|
|
}
|