Files
DP44/DataPRO/IService/.svn/pristine/09/09c023e3736ebeceb8526540a637221f7cd16220.svn-base

22 lines
449 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System;
namespace DTS.DASLib.Service
{
/// <inheritdoc />
/// <summary>
/// Analog output channel.
/// </summary>
[Serializable]
public class AnalogOutputDASChannel : OutputDASChannel
{
public AnalogOutputDASChannel(DASModule owner, int channelNumber)
: base(owner, channelNumber)
{
}
public AnalogOutputDASChannel()
{
}
}
}