using System;
using System.Collections.Generic;
using System.Text;
using ScrewTurn.Wiki.PluginFramework;
namespace ScrewTurn.Wiki {
///
/// Represents a Local Page.
///
public class LocalPageInfo : PageInfo {
private string file;
///
/// Initializes a new instance of the PageInfo class.
///
/// The Full Name of the Page.
/// The Pages Storage Provider that manages this Page.
/// The creation Date/Time.
/// The relative path of the file used for data storage.
public LocalPageInfo(string fullName, IPagesStorageProviderV30 provider, DateTime creationDateTime, string file)
: base(fullName, provider, creationDateTime) {
this.file = file;
}
///
/// Gets or sets the relative path of the File used for data storage.
///
public string File {
get { return file; }
set { file = value; }
}
}
}