22 lines
569 B
C#
22 lines
569 B
C#
using xDataService.Constants;
|
|
|
|
namespace xDataService.Configuration
|
|
{
|
|
/// <summary>
|
|
/// Describe a Database ...
|
|
/// </summary>
|
|
public class XDataBaseConfiguration
|
|
{
|
|
/// <summary>
|
|
/// Provider Type ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public XDbProviders Provider { get; set; }
|
|
|
|
/// <summary>
|
|
/// Connection String which provide Requires Data to Connect to Db Provider ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public string ConnectionString { get; set; }
|
|
}
|
|
} |