blob: 2b2a3e0d98582fb0f6d07ae765055cf65464eee8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package models
import "time"
type User struct {
SteamID int64
Username string
AvatarLink string
CountryCode string
CreatedAt time.Time
UpdatedAt time.Time
UserType int16
}
|