using System; using System.Collections.Generic; using System.Text; namespace ScrewTurn.Wiki { /// /// Class used for exchaning data between the Core library and the Wiki engine. /// public static class Exchanger { private static IResourceExchanger resourceExchanger; /// /// Gets or sets the singleton instance of the Resource Exchanger object. /// public static IResourceExchanger ResourceExchanger { get { return resourceExchanger; } set { resourceExchanger = value; } } } }