Files
DP44/Common/DTS.Common.DAS.Concepts/.svn/pristine/20/20347b3808b67bddeba0e86b174f97ccb0514253.svn-base
2026-04-17 14:55:32 -04:00

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