IOptions.cs 194 B

123456789
  1. namespace qdr.app.bundleboiler.business
  2. {
  3. public interface IOptions
  4. {
  5. string ConnectionString { get; set; }
  6. string NLogConfigurationFile {get;set;}
  7. }
  8. }