您目前尚未登陆,请选择【登陆】或【注册
首页->博客论坛->LiveBlog v1.0测试版源码>>LiveBlog.Core/Post.cs>>源码在线查看
温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:LiveBlog v1.0测试版源码
当前文件:文件类型 LiveBlog/LiveBlog.Core/Post.cs打开代码结构图
普通视图
		            
1Using 17 18namespace LiveBlog.Core 19{ 20 /// <summary> 21 /// A post is an entry on the blog - a blog post. 22 /// </summary> 23 [Serializable] 24 public class Post : BusinessBase<Post, Guid>, IComparable<Post>, IPublishable 25 { 26 27 Constructor 44 45 Properties