using System;
using System.Collections.Generic;
using System.Text;
namespace ScrewTurn.Wiki.PluginFramework {
///
/// The base interface that all the Storage Providers must implement. All the Provider Type-specific interfaces inherit from this one or from a one, either directly or from a derived interface
///
/// This interface should not be implemented directly by a class.
public interface IStorageProviderV30 : IProviderV30 {
///
/// Gets a value specifying whether the provider is read-only, i.e. it can only provide data and not store it.
///
bool ReadOnly { get; }
}
}