/*
* Test.Module.Channel.IConvertable.cs
*
* Copyright © 2009
* Diversified Technical Systems, Inc.
* All Rights Reserved
*/
namespace DTS.Serialization
{
// *** see Test.cs ***
public partial class Test
{
// *** see Test.Module.cs ***
public partial class Module
{
// *** see Test.Module.Channel.cs ***
public partial class Channel
{
///
/// An object that expresses this interface can convert itself to and from a
/// object.
///
///
public interface IConvertable
{
///
/// Convert this object to a .
///
///
///
/// The equivalent of this object.
///
///
Channel ToDtsSerializationTestModuleChannel();
///
/// Initialize this object using the specified .
///
///
///
/// The with which this object will be
/// initialized from.
///
///
void FromDtsSerializationTestModuleChannel(Channel channel);
}
}
}
}
}