dcbot/internal/domain/village.go
Dawid Wysokiński c7efe7a240
All checks were successful
continuous-integration/drone/push Build is passing
refactor: split domain/tw.go into multiple files
2023-07-09 08:06:53 +02:00

19 lines
289 B
Go

package domain
type Village struct {
ID int64
FullName string
ProfileURL string
Points int64
X int64
Y int64
Player NullPlayerMeta
}
type VillageMeta struct {
ID int64
FullName string
ProfileURL string
Player NullPlayerMeta
}