26 lines
525 B
C#
26 lines
525 B
C#
|
|
/*
|
|||
|
|
* DAS.Channel.IIsoCodeAware.cs
|
|||
|
|
*
|
|||
|
|
* Copyright © 2009
|
|||
|
|
* Diversified Technical Systems, Inc.
|
|||
|
|
* All Rights Reserved
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
namespace DTS.DAS.Concepts.DAS.Channel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Definition of the concept of ISO code awareness.
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IIsoCodeAware
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Get/set this object's IsoCode <see cref="string"/>.
|
|||
|
|
/// </summary>
|
|||
|
|
string IsoCode
|
|||
|
|
{
|
|||
|
|
get;
|
|||
|
|
set;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|