AzureCosmosDBOptions.cs 556 B

12345678910111213141516171819
  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 int CollectionThroughput { get; set; } = 400;
  12. public string[] ScanModel { get; set; }
  13. public AzureCosmosDBOptions()
  14. {
  15. //Azure Table Init
  16. }
  17. }
  18. }