123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Text.Json;
- using System.Threading.Tasks;
- namespace TEAMModelOS.SDK.Models.Cosmos.Common
- {
- public class ArtExam : CosmosEntity
- {
- public ArtExam()
- {
- pk = "ArtExam";
- }
- public string activityId { get; set; }
- public JsonElement JsonElement { get; set; }
- }
- }
|