using System;
using System.Collections.Generic;
using System.Reflection;
namespace Swan.Mappers
{
///
/// Interface object map.
///
public interface IObjectMap
{
///
/// Gets or sets the map.
///
Dictionary> Map { get; }
///
/// Gets or sets the type of the source.
///
Type SourceType { get; }
///
/// Gets or sets the type of the destination.
///
Type DestinationType { get; }
}
}