26 lines
556 B
Plaintext
26 lines
556 B
Plaintext
/*
|
|
* DTS.Common.DAS.Concepts.DAS.Channel.IIsoCodeAware.cs
|
|
*
|
|
* Copyright © 2009
|
|
* Diversified Technical Systems, Inc.
|
|
* All Rights Reserved
|
|
*/
|
|
|
|
namespace DTS.Common.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;
|
|
}
|
|
}
|
|
}
|