Ethernet.go 285 B

12345678910111213141516
  1. package model
  2. type EthernetStaticIPRequest struct {
  3. Id string
  4. Ipv4Addresses string
  5. Ipv4Method string
  6. DNS string
  7. Gateway string
  8. }
  9. type EthernetInfo struct {
  10. MacAddress string
  11. Ipv4Addresses string
  12. Gateway string
  13. DNS []string
  14. }