/* * DAS.Channel.IEngineeringUnitAware.cs * * Copyright © 2009 * Diversified Technical Systems, Inc. * All Rights Reserved */ namespace DTS.DAS.Concepts.DAS.Channel { /// /// Definition of the concept of engineering unit awareness. /// public interface IEngineeringUnitAware { /// /// Get/set this object's engineering unit description . /// string EngineeringUnits { get; set; } } }