using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.API.Models.Core { public class Semester { public string semesterName { get; set; } public string count { get; set; } public string month { get; set; } public string day { get; set; } public string semesterCode { get; set; } } }