using System;
namespace DTS.DASLib.Service
{
///
///
/// Base class for input channels.
///
[Serializable]
public class InputDASChannel : DASChannel
{
///
/// CTOR to populate a channel's owning module and channel WRT that module. Calls
/// base class CTOR.
///
/// Module that contains this channel.
/// ChannelNumber of this channel WRT owning module.
public InputDASChannel(DASModule owner, int channelNumber)
: base(owner, channelNumber)
{
}
public InputDASChannel()
{
}
}
}