Add User model

This commit is contained in:
Deluan
2020-01-14 16:11:27 -05:00
parent 127f70f841
commit 14fe357387
3 changed files with 17 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
package domain
import "time"
type User struct {
ID string
Name string
Password string
IsAdmin bool
CreatedAt time.Time
}