Files
DP44/Common/DTS.Common.DAS.Concepts/Interfaces/DAS/Channel/IEngineeringUnitAware.cs

26 lines
610 B
C#
Raw Normal View History

2026-04-17 14:55:32 -04:00
/*
* DTS.Common.DAS.Concepts.DAS.Channel.IEngineeringUnitAware.cs
*
* Copyright © 2009
* Diversified Technical Systems, Inc.
* All Rights Reserved
*/
namespace DTS.Common.DAS.Concepts.DAS.Channel
{
/// <summary>
/// Definition of the concept of engineering unit awareness.
/// </summary>
public interface IEngineeringUnitAware
{
/// <summary>
/// Get/set this object's engineering unit description <see cref="string"/>.
/// </summary>
string EngineeringUnits
{
get;
set;
}
}
}