10 lines
223 B
Plaintext
10 lines
223 B
Plaintext
|
|
namespace DTS.Common.Interface.Channels
|
||
|
|
{
|
||
|
|
public interface IChannelSettingRecord
|
||
|
|
{
|
||
|
|
int Id { get; set; }
|
||
|
|
string SettingName { get; set; }
|
||
|
|
string DefaultValue { get; set; }
|
||
|
|
}
|
||
|
|
}
|