123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.DI.AzureCosmos.Inner
- {
- public class AzureCosmosDict
- {
- /// <summary>
- /// 表名方式的连接
- /// </summary>
- public Dictionary<string, AzureCosmosModel> nameCosmos { get; set; } = new Dictionary<string, AzureCosmosModel>();
- /// <summary>
- /// 类类型的连接
- /// </summary>
- public Dictionary<string, AzureCosmosModel> typeCosmos { get; set; } = new Dictionary<string, AzureCosmosModel>();
- }
- }
|