package structs import "time" // User represents a session // swagger:model type Session struct { UserId string SessionId string IP string UserAgent string LastLogin time.Time Expires time.Time }