/* Test.Module.Channel.Sensor.cs Copyright © 2008 Diversified Technical Systems, Inc. All Rights Reserved */ using System.ComponentModel; namespace DTS.DAS.Concepts { // *** see Test.cs *** public partial class Test { /// /// A container for DTS generic module concepts. /// public sealed partial class Module { // *** see Test.Module.Channel.cs *** public partial class Channel { /// /// Container for DTS generic sensor concepts. /// sealed partial class Sensor { /// /// Not intended for instantiation. /// private Sensor( ) { } /// /// IEPE Coupling modes /// public enum CouplingModes { [Description("AC")] AC, [Description("AC/DC")] DC } } } } } }