- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.API.Models.Core
- {
- public class Semester
- {
- public string name { get; set; }
- public string sCount { get; set; }
- public string month { get; set; }
- public string day { get; set; }
- }
- }
|