17 lines
387 B
Plaintext
17 lines
387 B
Plaintext
|
|
using DTS.Common.Enums;
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface.Sensors
|
||
|
|
{
|
||
|
|
public interface IStreamInputSettingDefaults
|
||
|
|
{
|
||
|
|
///<summary>
|
||
|
|
/// udp address setting value for the channel
|
||
|
|
///</summary>
|
||
|
|
string UDPAddress { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// </summary>
|
||
|
|
/// <returns></returns>
|
||
|
|
bool Validate();
|
||
|
|
}
|
||
|
|
}
|