13 lines
142 B
Go
13 lines
142 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Client struct {
|
|
PublicId string
|
|
ClientId string
|
|
StartTime time.Time
|
|
SessionType string
|
|
}
|