Exam.cs 555 B

1234567891011121314151617181920
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using TEAMModelOS.SDK.Context.Attributes.Azure;
  6. namespace TEAMModelOS.Model.Evaluation.Models.CosmosModels
  7. {
  8. [TableSpace(Name = "Evaluation")]
  9. public class Exam
  10. {
  11. [JsonProperty(PropertyName = "id")]
  12. public string Id { get; set; }
  13. [PartitionKey]
  14. public string Number { get; set; }
  15. public string Name { get; set; }
  16. public string Time { get; set; }
  17. public string SchoolName { get; set; }
  18. }
  19. }