init
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user