ForwardConfig.go 161 B

1234567891011121314
  1. package Models
  2. type ForwardConfig struct {
  3. RuleId int
  4. Name string
  5. Status int
  6. SrcAddr string
  7. SrcPort int
  8. Protocol string
  9. DestAddr string
  10. DestPort int
  11. }
粤ICP备19079148号