CosmosModelInfo.cs 427 B

12345678910111213141516
  1. using Microsoft.Azure.Cosmos;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace TEAMModelOS.SDK.Module.AzureCosmosDBV3
  6. {
  7. public class CosmosModelInfo
  8. {
  9. public Container container { get; set; }
  10. public bool cache { get; set; }
  11. public bool monitor { get; set; } = false;
  12. public Type type { get; set; }
  13. public string partitionKey { get; set; }
  14. }
  15. }