using System;
using System.Collections.Generic;
using System.Text;

namespace Study.DelegateSeries.Core
{
    /// <summary>
    /// 老师类
    /// </summary>
    public class Teacher
    {
        public int Id { get; set; }

        public string Name { get; set; }

        public static string ShowTypeName()
        {
            return typeof(Teacher).FullName;
        }

        public string ShowTeacherName()
        {
            return this.Name;
        }
    }
}