123456789101112131415161718192021222324 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using TEAMModelOS.SDK.Context.Attributes.Azure;
- namespace TEAMModelOS.API.Models.Core
- {
- public class StudentInfo
- {
- [JsonProperty(PropertyName = "id")]
- public string id { get; set; }
- public string studentId { get; set; }
- // public string Password { get; set; }
- public string password { get; set; }
- public string name { get; set; }
- public int seatNo { get; set; }
- public string classroomCode { get; set; }
- public string gradeCode { get; set; }
- public string periodCode { get; set; }
- [PartitionKey]
- public string schoolCode { get; set; }
- }
- }
|