mirror of
https://github.com/zitadel/zitadel.git
synced 2025-07-01 08:18:32 +00:00
15 lines
222 B
Go
15 lines
222 B
Go
![]() |
package domain
|
||
|
|
||
|
import "github.com/caos/zitadel/internal/eventstore/models"
|
||
|
|
||
|
type Machine struct {
|
||
|
models.ObjectRoot
|
||
|
|
||
|
Name string
|
||
|
Description string
|
||
|
}
|
||
|
|
||
|
func (sa *Machine) IsValid() bool {
|
||
|
return sa.Name != ""
|
||
|
}
|