ID.cs 192 B

1234567891011
  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. }
  10. }