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

📄 blogvo.cs

📁 ASP.net网站开发四“酷”全书:新闻、论坛、电子商城、博客_源码
💻 CS
字号:
using System;

namespace WesternByte.MyBlog.Core.Blog
{
	/// <summary>
	/// BlogVO 的摘要说明。
	/// </summary>
	public class BlogVO
	{
		private int blogID;
		private string username;
		private string password;
		private string name;
		private string email;
		private string subject;
		private string description;
		private int entryNum;
		private int role;
		private int essayCount;
		private int articleCount;
		private int feedBackCount;

		public int BlogID
		{
			get{ return blogID;}
			set{ blogID = value;}
		}
		public string Username
		{
			get{ return username;}
			set{ username = value;}
		}
		public string Password
		{
			get{ return password;}
			set{ password = value;}
		}
		public string Name
		{
			get{ return name;}
			set{ name = value;}
		}
		public string Email
		{
			get{ return email;}
			set{ email = value;}
		}
		public string Subject
		{
			get{ return subject;}
			set{ subject = value;}
		}
		public string Description
		{
			get{ return description;}
			set{ description = value;}
		}
		public int EntryNum
		{
			get{ return entryNum;}
			set{ entryNum = value;}
		}
		public int ArticleCount
		{
			get{ return articleCount;}
			set{ articleCount = value;}
		}
		public int EssayCount
		{
			get{ return essayCount;}
			set{ essayCount = value;}
		}
		public int Role
		{
			get{ return role;}
			set{ role = value;}
		}
		public int FeedBackCount
		{
			get{ return feedBackCount;}
			set{ feedBackCount = value;}
		}
	}
}

⌨️ 快捷键说明

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