card_id/common/store/entity/gamer/gamer.go

11 lines
175 B
Go
Raw Normal View History

2022-04-13 08:03:35 +00:00
package gamer
import "time"
type Gamer struct {
UniqueName string `json:"unique_name"`
DisplayName string `json:"display_name"`
LastSeen time.Time `json:"last_seen"`
}