converge/pkg/models/client.go

16 lines
243 B
Go

package models
import (
"converge/pkg/comms"
"time"
)
type Client struct {
Guid string
PublicId string
ClientId string
StartTime time.Time
SessionType string
EnvironmentInfo comms.EnvironmentInfo
}