using System;
namespace WebDAVSharp.Server.Stores.BaseClasses
{
///
/// This is the base class for implementations.
///
public class WebDavStoreDocumentBase : WebDavStoreItemBase
{
///
/// Initializes a new instance of the class.
///
///
/// The parent that contains this
/// implementation.
///
/// The name of this
///
/// is null.
protected WebDavStoreDocumentBase(IWebDavStoreCollection parentCollection, string name, IWebDavStore store)
: base(parentCollection, name, store)
{
}
}
}