Files
DP44/Common/DTS.Common/.svn/pristine/ae/aed6d4dda1302f96f1be36a3c97294ef6bf831b8.svn-base

16 lines
437 B
Plaintext
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();
}
}