department.cs

来自「这个版本(InteliIM Open Kernel Release 2)是目前最」· CS 代码 · 共 61 行

CS
61
字号
#region Using Directives

using Org.InteliIM.Users; 

#endregion

namespace Org.InteliIM.Applications.Office
{
	/// <summary>
	/// The department.
	/// </summary>
	public class Department : ContactGroup
	{
		/// <summary>
		/// Initializes a new instance of the Department class.
		/// </summary>
		public Department()
		{
		}
		
		private string principalId;

		/// <summary>
		/// Gets or sets the pricipal id.
		/// </summary>
		public string PrincipalId
		{
			get 
			{
				if (this.principalId == null)
					this.principalId = "";

				return this.principalId; 
			}
			set 
			{ 
				this.principalId = value; 
			}
		}

		private string description;

		/// <summary>
		/// Gets or sets the description.
		/// </summary>
		public string Description
		{
			get
			{
				if (this.description == null)
					this.description = "";

				return this.description;
			}
			set
			{
				this.description = value;
			}
		}
	}
}

⌨️ 快捷键说明

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