14 lines
178 B
Go
14 lines
178 B
Go
|
package model
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Account struct {
|
||
|
Id int
|
||
|
Username string
|
||
|
Password string
|
||
|
IsAdmin bool
|
||
|
Created time.Time
|
||
|
LastLogin time.Time
|
||
|
Settings any
|
||
|
}
|