📄 emailinfo.cs
字号:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SkyiSite.DBUtility
{
public class EmailInfo
{
private string _From;
private string _Home;
private string _UserName;
private string _PassWord;
private string _SendSuccessMessage;
private string _SendFailMessage;
public EmailInfo() { }
public EmailInfo(string pFrom, string pUserName, string pPassWord, string pSendSuccessMessage, string pSendFailMessage,string pHome)
{
From = pFrom;
UserName = pUserName;
PassWord = pPassWord;
SendSuccessMessage = pSendSuccessMessage;
SendFailMessage = pSendFailMessage;
Home = pHome;
}
public string Home
{
get
{
return this._Home;
}
set
{
if ((this._Home != value))
{
this._Home = value;
}
}
}
public string From
{
get
{
return this._From;
}
set
{
if ((this._From != value))
{
this._From = value;
}
}
}
public string UserName
{
get
{
return this._UserName;
}
set
{
if ((this._UserName != value))
{
this._UserName = value;
}
}
}
public string PassWord
{
get
{
return this._PassWord;
}
set
{
if ((this._PassWord != value))
{
this._PassWord = value;
}
}
}
public string SendSuccessMessage
{
get
{
return this._SendSuccessMessage;
}
set
{
if ((this._SendSuccessMessage != value))
{
this._SendSuccessMessage = value;
}
}
}
public string SendFailMessage
{
get
{
return this._SendFailMessage;
}
set
{
if ((this._SendFailMessage != value))
{
this._SendFailMessage = value;
}
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -