using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//EmailConfig
public class EmailConfig
{
///
/// EmailAccount
///
private string _emailaccount;
public string EmailAccount
{
get{ return _emailaccount; }
set{ _emailaccount = value; }
}
///
/// EmailPass
///
private string _emailpass;
public string EmailPass
{
get{ return _emailpass; }
set{ _emailpass = value; }
}
///
/// ServerAddr
///
private string _serveraddr;
public string ServerAddr
{
get{ return _serveraddr; }
set{ _serveraddr = value; }
}
///
/// SSL
///
private bool? _ssl;
public bool? SSL
{
get{ return _ssl; }
set{ _ssl = value; }
}
///
/// Port
///
private int? _port;
public int? Port
{
get{ return _port; }
set{ _port = value; }
}
}
}