📄 messagesendfeedback.cs
字号:
#region Using Directives
using System.Text;
using Org.InteliIM.Communications;
#endregion
namespace Org.InteliIM.Configurations
{
/// <summary>
/// The message for sending a feedback.
/// </summary>
public sealed class MessageSendFeedback : InstantMessage
{
/// <summary>
/// Initializes a new instance of the MessageSendFeedback class.
/// </summary>
public MessageSendFeedback()
{
}
private Feedback feedback;
/// <summary>
/// Gets or sets the feedback.
/// </summary>
public Feedback Feedback
{
get
{
if (this.feedback == null)
this.feedback = new Feedback();
return this.feedback;
}
set { this.feedback = value; }
}
/// <summary>
/// Overridden.
/// Creates and returns a string representation of the current object.
/// </summary>
/// <returns></returns>
public override string ToString()
{
StringBuilder sb = new StringBuilder();
sb.Append("Send Feedback [sender: " + this.From + ", Subject: " + this.Feedback.Subject + "]");
return sb.ToString();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -