Semester.cs 338 B

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