1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Text.Json.Serialization;
- using TEAMModelOS.SDK.Context.Attributes.Azure;
- namespace TEAMModelOS.SDK.Models
- {
- public class CosmosEntity
- {
- public string id { get; set; }
- public string code { get; set; }
- public string pk { get; set; }
- public int? ttl { get; set; } = -1;
- public long? _ts { get; set; } = -1;
- }
- }
|