28 lines
871 B
C#
28 lines
871 B
C#
|
namespace HRM.BO.Configuration
|
|||
|
{
|
|||
|
public class EmailSettings
|
|||
|
{
|
|||
|
public string WebAddress { get; set; }
|
|||
|
public string SendMethod { get; set; }
|
|||
|
public string EmailServer { get; set; }
|
|||
|
public string FromAddress { get; set; }
|
|||
|
public string UserID { get; set; }
|
|||
|
public string Password { get; set; }
|
|||
|
public string PortNumber { get; set; }
|
|||
|
public string EnableSSL { get; set; }
|
|||
|
public string SingleSignOn { get; set; }
|
|||
|
public string LDAP { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class SFTPSettings
|
|||
|
{
|
|||
|
public string HostName { get; set; }
|
|||
|
public string RemoteFileName { get; set; }
|
|||
|
public string LocalDestinationFilename { get; set; }
|
|||
|
public string UserName { get; set; }
|
|||
|
public string Password { get; set; }
|
|||
|
public int Port { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|