AzureCosmosDict.cs 568 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.DI.AzureCosmos.Inner
  5. {
  6. public class AzureCosmosDict
  7. {
  8. /// <summary>
  9. /// 表名方式的连接
  10. /// </summary>
  11. public Dictionary<string, AzureCosmosModel> nameCosmos { get; set; } = new Dictionary<string, AzureCosmosModel>();
  12. /// <summary>
  13. /// 类类型的连接
  14. /// </summary>
  15. public Dictionary<string, AzureCosmosModel> typeCosmos { get; set; } = new Dictionary<string, AzureCosmosModel>();
  16. }
  17. }