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