aboutsummaryrefslogtreecommitdiff
path: root/backend/models/models.go
blob: c49eaeb3e84fdd0285222c649d419aa3e09c85ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package models

import "time"

type User struct {
	SteamID     string    `json:"steam_id"`
	Username    string    `json:"username"`
	AvatarLink  string    `json:"avatar_link"`
	CountryCode string    `json:"country_code"`
	CreatedAt   time.Time `json:"created_at"`
	UpdatedAt   time.Time `json:"updated_at"`
}