Files
DP44/Common/DTS.Common.DAS.Concepts/.svn/pristine/26/265323a6a68f919d4bb6098cbd5d6ebbaa42f326.svn-base
2026-04-17 14:55:32 -04:00

25 lines
564 B
Plaintext

/*
* DTS.Common.DAS.Concepts.DAS.Channel.cs
*
* Copyright © 2009
* Diversified Technical Systems, Inc.
* All Rights Reserved
*/
using DTS.Common.Utilities;
namespace DTS.Common.DAS.Concepts.DAS
{
/// <summary>
/// Slice control app's internal abstract representation of a DAS channel.
/// </summary>
///
/// <typeparam name="TDataType">
/// The "type" of the data contained by channels of this DAS.
/// </typeparam>
///
public abstract class Channel<TDataType> : Exceptional
{
}
}