Add UserList in UI

This commit is contained in:
Deluan 2020-01-19 20:40:18 -05:00
parent 3a03284c59
commit 1c04a19910
13 changed files with 282 additions and 23 deletions

View file

@ -3,9 +3,12 @@ package model
import "time"
type User struct {
ID string
Name string
Password string
IsAdmin bool
CreatedAt time.Time
ID string
Name string
Password string
IsAdmin bool
LastLoginAt time.Time
LastAccessAt time.Time
CreatedAt time.Time
UpdatedAt time.Time
}