您目前尚未登陆,请选择【登陆】或【注册
首页->博客论坛->LiveBlog v1.0测试版源码>>LiveBlog.Core/Page.cs>>源码在线查看
温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:LiveBlog v1.0测试版源码
当前文件:文件类型 LiveBlog/LiveBlog.Core/Page.cs打开代码结构图
普通视图
		            
1Using 12 13namespace LiveBlog.Core 14{ 15 /// <summary> 16 /// A page is much like a post, but is not part of the 17 /// blog chronology and is more static in nature. 18 /// <remarks> 19 /// Pages can be used for "About" pages or other static 20 /// information. 21 /// </remarks> 22 /// </summary> 23 public sealed class Page : BusinessBase<Page, Guid>, IPublishable 24 { 25 26 Constructor 38 39 Properties