using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models { public class Semester { public string name { get; set; } public string count { get; set; } public int month { get; set; } public int day { get; set; } public string id { get; set; } } }