10 lines
227 B
C#
10 lines
227 B
C#
namespace DTS.Common.Interface.DASFactory
|
|
{
|
|
public interface IConnectedEthernetDevice
|
|
{
|
|
string MACAddress { get; }
|
|
int Port { get; }
|
|
string SerialNumber { get; set; }
|
|
}
|
|
}
|