26 lines
610 B
Plaintext
26 lines
610 B
Plaintext
|
|
/*
|
||
|
|
* 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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|