issueliststate.cs
来自「BugNET is an issue tracking and project 」· CS 代码 · 共 45 行
CS
45 行
using System;
namespace BugNET.BusinessLogicLayer
{
/// <summary>
/// Class to save the state of the IssueList page. An object of this class is saved in the session
/// so that the IssueList page state can be restored.
/// </summary>
public class IssueListState
{
private string _ViewIssues;
private int _ProjectId;
private int _IssueListPageIndex;
/// <summary>
/// Gets or sets the view issues.
/// </summary>
/// <value>The view issues.</value>
public string ViewIssues
{
get { return _ViewIssues; }
set { _ViewIssues = value; }
}
/// <summary>
/// Gets or sets the project id.
/// </summary>
/// <value>The project id.</value>
public int ProjectId
{
get { return _ProjectId; }
set { _ProjectId = value; }
}
/// <summary>
/// Gets or sets the index of the issue list page.
/// </summary>
/// <value>The index of the issue list page.</value>
public int IssueListPageIndex
{
get { return _IssueListPageIndex; }
set { _IssueListPageIndex = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?