Semaphore/db/User.go

19 lines
593 B
Go
Raw Normal View History

package db
2016-01-05 00:32:53 +01:00
import (
"time"
)
//User is the model for an entity which has access to the API
2016-01-05 00:32:53 +01:00
type User struct {
2016-03-19 00:23:03 +01:00
ID int `db:"id" json:"id"`
2016-01-05 00:32:53 +01:00
Created time.Time `db:"created" json:"created"`
Username string `db:"username" json:"username" binding:"required"`
Name string `db:"name" json:"name" binding:"required"`
Email string `db:"email" json:"email" binding:"required"`
2016-04-02 14:40:07 +02:00
Password string `db:"password" json:"-"`
Admin bool `db:"admin" json:"admin"`
External bool `db:"external" json:"external"`
Alert bool `db:"alert" json:"alert"`
2016-01-05 00:32:53 +01:00
}