dcbot/internal/domain/player.go

14 lines
187 B
Go
Raw Normal View History

package domain
type PlayerMeta struct {
ID int
Name string
ProfileURL string
Tribe NullTribeMeta
}
type NullPlayerMeta struct {
Player PlayerMeta
Valid bool
}