⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 feedback.cs

📁 该源代码用 C# 写成
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -