diff options
Diffstat (limited to 'pkg/model/account.go')
-rw-r--r-- | pkg/model/account.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pkg/model/account.go b/pkg/model/account.go new file mode 100644 index 0000000..cbb6407 --- /dev/null +++ b/pkg/model/account.go @@ -0,0 +1,13 @@ +package model + +import "time" + +type Account struct { + Id int + Username string + Password string + IsAdmin bool + Created time.Time + LastLogin time.Time + Settings any +} |