package models

import (
	"converge/pkg/comms"
	"time"
)

type Agent struct {
	Guid      string
	PublicId  string
	StartTime time.Time

	EnvironmentInfo comms.EnvironmentInfo
	ExpiryTime      time.Time
}