Files
DP44/Common/DTS.Common/.svn/pristine/94/946640a7fe8ca0d4d9333637618a5331da0ca8a4.svn-base
2026-04-17 14:55:32 -04:00

11 lines
248 B
Plaintext

using System.Net.NetworkInformation;
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface INetworkAdapterViewModel : IBaseViewModel
{
NetworkInterface SelectedNetworkInterface { get; set; }
}
}