ForwardConfig.go 187 B

12345678910111213
  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. Others string
  12. }
粤ICP备19079148号