namespace xDataService.Interfaces {
///
/// this Configuration used to Carry all Entity Descriptors collections
/// can readable by appSettings.json file for providing dynamic data seeding ...
///
public interface IXDbSeederConfig {
///
/// determines an Entity can Update when Exists or not ...
/// this must handled by consumer on IXDbSeeder Seed method implementation ...
///
///
bool UpdateExists { get; set; }
}
}