feedback.cs

来自「该源代码用 C# 写成」· CS 代码 · 共 75 行

CS
75
字号
namespace Org.InteliIM.Configurations
{
	/// <summary>
	/// 用户反馈
	/// </summary>
	public class Feedback
	{
		private string from = null;

		/// <summary>
		/// 发送此反馈的用户 ID
		/// </summary>
		public string From
		{
			get
			{
				if(this.from == null)
					this.from = "";

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

		private string subject = null;

		/// <summary>
		/// 主题
		/// </summary>
		public string Subject
		{
			get
			{
				if(this.subject == null)
					this.subject = "";

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

		private string content = null;

		/// <summary>
		/// 内容
		/// </summary>
		public string Content
		{
			get
			{
				if(this.content == null)
					this.content = "";

				return this.content;
			}
			set
			{
				this.content = value;
			}
		}
		public Feedback()
		{
			//
			// TODO: 在此处添加构造函数逻辑
			//
		}
	}
}

⌨️ 快捷键说明

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