using System; using System.Collections.Generic; using System.Text; namespace ScrewTurn.Wiki { /// /// Exposes methods for exchanging Resources. /// public interface IResourceExchanger { /// /// Gets a Resource String. /// /// The Name of the Resource. /// The Resource String. string GetResource(string name); } }