inotificationcontext.cs
来自「BugNET is an issue tracking and project 」· CS 代码 · 共 33 行
CS
33 行
using System;
using System.Collections.Generic;
using System.Text;
namespace BugNET.BusinessLogicLayer
{
/// <summary>
///
/// </summary>
public interface INotificationContext
{
/// <summary>
/// Gets or sets the body text.
/// </summary>
/// <value>The body text.</value>
string BodyText { get;set;}
/// <summary>
/// Gets or sets the send to address.
/// </summary>
/// <value>The send to address.</value>
string Username { get; set; }
/// <summary>
/// Gets or sets the subject.
/// </summary>
/// <value>The subject.</value>
string Subject { get; set; }
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?