Files
DP44/Common/DTS.Common/Interface/Channels/IGroupChannelSettingRecord.cs
2026-04-17 14:55:32 -04:00

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; }
}
}