ArtExam.cs 423 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.Json;
  6. using System.Threading.Tasks;
  7. namespace TEAMModelOS.SDK.Models.Cosmos.Common
  8. {
  9. public class ArtExam : CosmosEntity
  10. {
  11. public ArtExam()
  12. {
  13. pk = "ArtExam";
  14. }
  15. public string activityId { get; set; }
  16. public JsonElement JsonElement { get; set; }
  17. }
  18. }