namespace WebDAVSharp.Server.Stores { /// /// This interface must be implemented by classes that serve as stores of collections and /// documents for the /// . /// public interface IWebDavStore { /// /// Gets the root collection of this . /// /// /// The root. /// IWebDavStoreCollection Root { get; } } }