using System.Collections.Generic;
using xDataService.Constants;
namespace xDataService.Configuration
{
///
/// Describe a Database ...
///
public class XDataBaseConfiguration
{
///
/// Provider Type ...
///
///
public XDbProviders Provider { get; set; }
///
/// Connection String which provide Requires Data to Connect to Db Provider ...
///
///
public string ConnectionString { get; set; }
///
/// Holds Seeding items ...
/// nameof(TEntity) => TEntity
///
public IDictionary> SeedItems { get; set; } = new Dictionary>();
}
}