14 lines
200 B
Go
14 lines
200 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
type EntityID string
|
|
|
|
type EntityState struct {
|
|
EntityID EntityID
|
|
State string
|
|
Attributes map[string]string
|
|
LastChanged time.Time
|
|
LastUpdated time.Time
|
|
}
|