using Microsoft.Azure.Cosmos; using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Module.AzureCosmosDBV3 { public class CosmosModelInfo { public Container container { get; set; } public bool cache { get; set; } public bool monitor { get; set; } = false; public Type type { get; set; } } }