Files
DP44/Common/DTS.Common.DAS.Concepts/DAS/DAS.Channel.IIsoCodeAware.cs
2026-04-17 14:55:32 -04:00

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;
}
}
}