/* * DTS.Common.DAS.Concepts.DAS.Channel.IIsoCodeAware.cs * * Copyright © 2009 * Diversified Technical Systems, Inc. * All Rights Reserved */ namespace DTS.Common.DAS.Concepts.DAS.Channel { /// /// Definition of the concept of ISO code awareness. /// public interface IIsoCodeAware { /// /// Get/set this object's IsoCode . /// string IsoCode { get; set; } } }