10 lines
231 B
C#
10 lines
231 B
C#
|
|
namespace DTS.Common.Interface.Channels
|
|||
|
|
{
|
|||
|
|
public interface IGroupChannelSettingRecord
|
|||
|
|
{
|
|||
|
|
long ChannelId { get; set; }
|
|||
|
|
int SettingId { get; set; }
|
|||
|
|
string SettingValue { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|