Semester.cs 317 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.API.Models.Core
  5. {
  6. public class Semester
  7. {
  8. public string name { get; set; }
  9. public string sCount { get; set; }
  10. public string month { get; set; }
  11. public string day { get; set; }
  12. }
  13. }