📄 blogvo.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 + -