diff --git a/api/models/users.go b/api/models/users.go index 730153c..e47dc2b 100644 --- a/api/models/users.go +++ b/api/models/users.go @@ -1,6 +1,11 @@ package models +import "time" + type UserModel struct { - Name string - Hash string -} \ No newline at end of file + Id int + Name string + Hash string + CreatedAt time.Time + LastUpdated time.Time +}