9 lines
179 B
Plaintext
9 lines
179 B
Plaintext
|
|
namespace DTS.Common.Interface.CustomChannels
|
||
|
|
{
|
||
|
|
public interface ICustomChannelModel
|
||
|
|
{
|
||
|
|
string Name { get; }
|
||
|
|
bool Included { get; set; }
|
||
|
|
}
|
||
|
|
}
|