Yimaru-BackEnd/internal/domain/branch.go

15 lines
299 B
Go

package domain
type Branch struct {
ID int64
Name string
Location string
WalletID int64
BranchManagerID int64
IsSelfOwned bool
IsSupportingSportBook bool
IsSupportingVirtual bool
IsSupportingGameZone bool
}