Files

32 lines
756 B
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
/*
Test.Module.Channel.cs
Copyright © 2008
Diversified Technical Systems, Inc.
All Rights Reserved
*/
namespace DTS.DAS.Concepts
{
// *** see Test.cs ***
public partial class Test
{
/// <summary>
/// A container for DTS generic module concepts.
/// </summary>
public sealed partial class Module
{
/// <summary>
/// A container for DTS generic channel concepts.
/// </summary>
public sealed partial class Channel
{
/// <summary>
/// Class is not intended for instantiation.
/// </summary>
private Channel( ) { }
}
}
}
}