📄 voteinfo.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
//该源码下载自【编程联盟】ASp.Net下载中心 【 http://aspx.bcbbs.net 】
namespace Model
{
public class VoteInfo
{
public int txtId;
public string txtName = string.Empty;
public int txtVoteNum;
public bool txtVis;
public VoteInfo()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
public VoteInfo(int nId, string nName, int nVoteNum, bool nVis)
{
this.txtId = nId;
this.txtName = nName;
this.txtVoteNum = nVoteNum;
this.txtVis = nVis;
}
public int VoteId
{
get { return txtId; }
set { txtId = value; }
}
public string VoteName
{
get { return txtName; }
set { txtName = value; }
}
public int VoteNum
{
get { return txtVoteNum; }
set { txtVoteNum = value; }
}
public bool Vis
{
get { return txtVis; }
set { txtVis = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -