123456789101112131415161718192021222324 |
- package v1
- type HostConfigOption struct {
- RelID int
- ConfigID int
- OptionID int
- }
- type ProductConfigOption struct {
- ID int
- OptionName string
- }
- type ProductConfigOptionSub struct {
- ID int
- OptionName string
- }
- type GameShieldHostBackendConfigResponse struct {
- RuleEntriesCount int64
- SourceMachinesCount int64
- MaxBandwidthCount int64
- OnlineDevicesCount int64
- }
|