13 lines
201 B
Go
13 lines
201 B
Go
package domain
|
|
|
|
|
|
type Branch struct {
|
|
ID int64
|
|
Name string
|
|
Location string
|
|
BranchManagerID int64
|
|
IsSelfOwned bool
|
|
IsSupportingSportBook bool
|
|
IsSupportingVirtual bool
|
|
IsSupportingGameZone bool
|
|
} |