blogvo.cs

来自「个人博客。。毕业设计````用来做毕业设计`」· CS 代码 · 共 85 行

CS
85
字号
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 + =
减小字号Ctrl + -
显示快捷键?