CosmosModelInfo.cs 378 B

123456789101112131415
  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. }
  14. }