package models

import (
	"time"
)

type Client struct {
	PublicId    string
	ClientId    int
	StartTime   time.Time
	SessionType string
}