iissuetab.cs

来自「BugNET is an issue tracking and project 」· CS 代码 · 共 37 行

CS
37
字号
using System;

namespace BugNET.UserInterfaceLayer
{
    /// <summary>
    /// Interface for issue tabs
    /// </summary>
	public interface IIssueTab 
	{

        /// <summary>
        /// Gets or sets the issue id.
        /// </summary>
        /// <value>The issue id.</value>
		int IssueId 
		{
			get;
			set;
		}
        /// <summary>
        /// Gets or sets the project id.
        /// </summary>
        /// <value>The project id.</value>
		int ProjectId
		{
			get;
			set;
		}

        /// <summary>
        /// Initializes this instance.
        /// </summary>
        void Initialize();

	}
}

⌨️ 快捷键说明

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