22 lines
434 B
Plaintext
22 lines
434 B
Plaintext
|
|
using System;
|
||
|
|
|
||
|
|
namespace DTS.DASLib.Service
|
||
|
|
{
|
||
|
|
/// <inheritdoc />
|
||
|
|
/// <summary>
|
||
|
|
/// Base class for output channels.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class OutputDASChannel : DASChannel
|
||
|
|
{
|
||
|
|
public OutputDASChannel(DASModule owner, int channelNumber)
|
||
|
|
: base(owner, channelNumber)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
public OutputDASChannel()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|