converge/pkg/models/client.go

14 lines
162 B
Go

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