using System; namespace Vinno.FIS.Sonopost.WebApi.Models { internal class NetworkInterfaceModel { public Guid Guid { get; set; } public string MacAddress { get; set; } public string Name { get; set; } public string Description { get; set; } public bool EnableDHCP { get; set; } public string IPAddress { get; set; } public string SubnetMask { get; set; } public string Gateway { get; set; } public string PreferredDNS { get; set; } public string StandbyDNS { get; set; } } }