host.go 395 B

123456789101112131415161718192021222324
  1. package v1
  2. type HostConfigOption struct {
  3. RelID int
  4. ConfigID int
  5. OptionID int
  6. }
  7. type ProductConfigOption struct {
  8. ID int
  9. OptionName string
  10. }
  11. type ProductConfigOptionSub struct {
  12. ID int
  13. OptionName string
  14. }
  15. type GameShieldHostBackendConfigResponse struct {
  16. RuleEntriesCount int64
  17. SourceMachinesCount int64
  18. MaxBandwidthCount int64
  19. OnlineDevicesCount int64
  20. }