NetworkInterfaceModel.cs 579 B

1234567891011121314151617181920212223242526
  1. using System;
  2. namespace Vinno.FIS.Sonopost.WebApi.Models
  3. {
  4. internal class NetworkInterfaceModel
  5. {
  6. public Guid Guid { get; set; }
  7. public string MacAddress { get; set; }
  8. public string Name { get; set; }
  9. public string Description { get; set; }
  10. public bool EnableDHCP { get; set; }
  11. public string IPAddress { get; set; }
  12. public string SubnetMask { get; set; }
  13. public string Gateway { get; set; }
  14. public string PreferredDNS { get; set; }
  15. public string StandbyDNS { get; set; }
  16. }
  17. }