Files
DP44/Common/DTS.CommonCore/.svn/pristine/6b/6b017daa505dc652e80d6dffb1d93264ed6c3857.svn-base
2026-04-17 14:55:32 -04:00

10 lines
231 B
Plaintext

namespace DTS.Common.Interface.Channels
{
public interface IGroupChannelSettingRecord
{
long ChannelId { get; set; }
int SettingId { get; set; }
string SettingValue { get; set; }
}
}