Files
DP44/Common/DTS.Common/.svn/pristine/6b/6b017daa505dc652e80d6dffb1d93264ed6c3857.svn-base

10 lines
231 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
namespace DTS.Common.Interface.Channels
{
public interface IGroupChannelSettingRecord
{
long ChannelId { get; set; }
int SettingId { get; set; }
string SettingValue { get; set; }
}
}