ID.cs 335 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Text.Json.Serialization;
  5. namespace TEAMModelOS.SDK.Module.AzureCosmosDBV3
  6. {
  7. public interface ID
  8. {
  9. string id { get; set; }
  10. int? ttl { get; set; }
  11. string pk { get; set; }
  12. string code { get; set; }
  13. }
  14. }