namespace Renci.SshNet
{
    /// 
    /// Represents a transformation that can be applied to a remote path.
    /// 
    public interface IRemotePathTransformation
    {
        /// 
        /// Transforms the specified remote path.
        /// 
        /// The path to transform.
        /// 
        /// The transformed path.
        /// 
        string Transform(string path);
    }
}