15 lines
388 B
C#
15 lines
388 B
C#
|
|
namespace DatabaseExport
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// GUI wrapper for template channels ... it contains a testobjecttemplatechannel
|
|||
|
|
/// </summary>
|
|||
|
|
public class TemplateChannelUI
|
|||
|
|
{
|
|||
|
|
private TestObjectTemplateChannel _channel;
|
|||
|
|
public TemplateChannelUI(TestObjectTemplateChannel channel)
|
|||
|
|
{
|
|||
|
|
_channel = channel;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|