mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
11 lines
242 B
Go
11 lines
242 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type APIToken struct {
|
|
ID string `db:"id" json:"id"`
|
|
Created time.Time `db:"created" json:"created"`
|
|
Expired bool `db:"expired" json:"expired"`
|
|
UserID int `db:"user_id" json:"user_id"`
|
|
}
|