- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Text.Json.Serialization;
- namespace TEAMModelOS.SDK.Module.AzureCosmosDBV3
- {
- public interface ID
- {
- int? ttl { get; set; }
- string pk { get; set; }
- string id { get; set; }
- string code { get; set; }
- }
- }
|