1234567891011121314151617181920 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using TEAMModelOS.SDK.Context.Attributes.Azure;
- namespace TEAMModelOS.Model.Evaluation.Models.CosmosModels
- {
- [TableSpace(Name = "Evaluation")]
- public class Exam
- {
- [JsonProperty(PropertyName = "id")]
- public string Id { get; set; }
- [PartitionKey]
- public string Number { get; set; }
- public string Name { get; set; }
- public string Time { get; set; }
- public string SchoolName { get; set; }
- }
- }
|