ID.cs 223 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Module.AzureCosmosDBV3
  5. {
  6. public interface ID
  7. {
  8. string id { get; set; }
  9. int? ttl { get; set; }
  10. }
  11. }