Files
DP44/Common/DTS.Common/Interface/Channels/IChannelSetting.cs

16 lines
437 B
C#
Raw Normal View History

2026-04-17 14:55:32 -04:00
namespace DTS.Common.Interface.Channels
{
public interface IChannelSetting
{
long ChannelId { get; set; }
int SettingTypeId { get; }
string SettingName { get; }
string DefaultValue { get; }
string Value { get; set; }
int IntValue { get; set; }
double DoubleValue { get; set; }
bool BoolValue { get; set; }
IChannelSetting Clone();
}
}