mirror of
https://github.com/lorsanstand/HomeOps-Hub.git
synced 2026-06-19 20:05:17 +03:00
30 lines
512 B
Go
30 lines
512 B
Go
package domain
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/lorsanstand/HomeOps-Hub/shared/domain"
|
|
)
|
|
|
|
type CreateAgentModel struct {
|
|
AgentID string
|
|
AgentName string
|
|
Architecture string
|
|
System string
|
|
Hostname string
|
|
Version string
|
|
Capabilities []domain.Capability
|
|
}
|
|
|
|
type AgentModel struct {
|
|
ID int
|
|
AgentID string
|
|
AgentName string
|
|
Architecture string
|
|
System string
|
|
Hostname string
|
|
Version string
|
|
Capabilities []domain.Capability
|
|
RegisteredAt time.Time
|
|
}
|