11 lines
248 B
C#
11 lines
248 B
C#
|
|
using System.Net.NetworkInformation;
|
|||
|
|
using DTS.Common.Base;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Interface
|
|||
|
|
{
|
|||
|
|
public interface INetworkAdapterViewModel : IBaseViewModel
|
|||
|
|
{
|
|||
|
|
NetworkInterface SelectedNetworkInterface { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|