using System;
namespace AsPartitionProcessing
{
///
/// Information required to connect to the configuration and logging database.
///
public class ConfigDatabaseConnectionInfo
{
///
/// Database server name.
///
public string Server { get; set; }
///
/// Name of the database.
///
public string Database { get; set; }
///
/// User name used for connection.
///
public string UserName { get; set; }
///
/// Password used for connection.
///
public string Password { get; set; }
///
/// Whether connection to be made using integrated authentication or SQL authentication.
///
public bool IntegratedAuth { get; set; }
}
}