AzureCosmosDBOptions.cs 429 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace HaBookCms.ServiceOptions.Options
  5. {
  6. public class AzureCosmosDBOptions
  7. {
  8. public string ConnectionString { get; set; } = null;
  9. public string ConnectionKey { get; set; } = null;
  10. public string Database { get; set; } = null;
  11. public AzureCosmosDBOptions()
  12. {
  13. //Azure Table Init
  14. }
  15. }
  16. }