Semester.cs 348 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.Models.SchoolInfo
  5. {
  6. public class Semester
  7. {
  8. public string name { get; set; }
  9. public string count { get; set; }
  10. public int month { get; set; }
  11. public int day { get; set; }
  12. public string id { get; set; }
  13. }
  14. }