You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.4 KiB
C#
56 lines
1.4 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//EmailConfig
|
|
public class EmailConfig
|
|
{
|
|
/// <summary>
|
|
/// EmailAccount
|
|
/// </summary>
|
|
private string _emailaccount;
|
|
public string EmailAccount
|
|
{
|
|
get{ return _emailaccount; }
|
|
set{ _emailaccount = value; }
|
|
}
|
|
/// <summary>
|
|
/// EmailPass
|
|
/// </summary>
|
|
private string _emailpass;
|
|
public string EmailPass
|
|
{
|
|
get{ return _emailpass; }
|
|
set{ _emailpass = value; }
|
|
}
|
|
/// <summary>
|
|
/// ServerAddr
|
|
/// </summary>
|
|
private string _serveraddr;
|
|
public string ServerAddr
|
|
{
|
|
get{ return _serveraddr; }
|
|
set{ _serveraddr = value; }
|
|
}
|
|
/// <summary>
|
|
/// SSL
|
|
/// </summary>
|
|
private bool? _ssl;
|
|
public bool? SSL
|
|
{
|
|
get{ return _ssl; }
|
|
set{ _ssl = value; }
|
|
}
|
|
/// <summary>
|
|
/// Port
|
|
/// </summary>
|
|
private int? _port;
|
|
public int? Port
|
|
{
|
|
get{ return _port; }
|
|
set{ _port = value; }
|
|
}
|
|
}
|
|
}
|