123456789101112131415161718 |
- using Azure.Cosmos;
- using Microsoft.Azure.Cosmos;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.DI.AzureCosmos.Inner
- {
- public class AzureCosmosModel
- {
- public CosmosContainer container { get; set; }
- public bool cache { get; set; }
- public bool monitor { get; set; } = false;
- public Type type { get; set; }
- public string partitionKey { get; set; }
- public CosmosDatabase database { get; set; }
- }
- }
|