⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 localpageinfo.cs

📁 YetAnotherForum.Net+ScrewTurnWiki中文完美汉化增强版
💻 CS
字号:

using System;
using System.Collections.Generic;
using System.Text;
using ScrewTurn.Wiki.PluginFramework;

namespace ScrewTurn.Wiki {

	/// <summary>
	/// Represents a Local Page.
	/// </summary>
	[Serializable]
	public class LocalPageInfo : PageInfo {

		private string file;

		/// <summary>
		/// Initializes a new instance of the <b>PageInfo</b> class.
		/// </summary>
		/// <param name="name">The Name of the Page.</param>
		/// <param name="provider">The Pages Storage Provider that manages this Page.</param>
		/// <param name="status">The Status of the Page.</param>
		/// <param name="creationDateTime">The creation Date/Time.</param>
		/// <param name="file">The file where the Page is stored.</param>
		public LocalPageInfo(string name, IPagesStorageProvider provider, PageStatus status, DateTime creationDateTime, string file)
			: base(name, provider, status, creationDateTime) {
			this.file = file;
		}

		/// <summary>
		/// Gets or sets the File.
		/// </summary>
		public string File {
			get { return file; }
			set { file = value; }
		}

	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -