Newer
Older
SubCabinetSolution / SubCabinetSolution / Model / SurgeryModel.cs
namespace SubCabinetSolution.Model
{
    public class SurgeryModel
    {
        public string DoctorName { get; set; }
        public string DeptName { get; set; }
        public string SurgeryTime { get; set; }
        public string SurgeryNum { get; set; }
    }
}