AzureCosmosDBOptions.cs 579 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Module.AzureCosmosDB.Configuration
  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 string AzureTableDialect { get; set; } = null;
  12. public int CollectionThroughput { get; set; } = 400;
  13. public AzureCosmosDBOptions()
  14. {
  15. //Azure Table Init
  16. }
  17. }
  18. }