aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2022-10-26 01:04:37 +0300
committerArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2022-10-26 01:04:37 +0300
commit1c20a79dfcb09b4e2a18dc19864167590881148a (patch)
tree84ea46213342e6aa02a841227df9ce1b77e67dac
parentchange env key retrieve method (diff)
downloadlphub-1c20a79dfcb09b4e2a18dc19864167590881148a.tar.gz
lphub-1c20a79dfcb09b4e2a18dc19864167590881148a.tar.bz2
lphub-1c20a79dfcb09b4e2a18dc19864167590881148a.zip
models structure
-rw-r--r--backend/models/models.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/backend/models/models.go b/backend/models/models.go
new file mode 100644
index 0000000..2b2a3e0
--- /dev/null
+++ b/backend/models/models.go
@@ -0,0 +1,13 @@
1package models
2
3import "time"
4
5type User struct {
6 SteamID int64
7 Username string
8 AvatarLink string
9 CountryCode string
10 CreatedAt time.Time
11 UpdatedAt time.Time
12 UserType int16
13}