using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_XinWei.Commons.Dto.School
{
///
/// 班级列表
///
public class ClassListDto
{
///
/// 班级Id
///
public int ClassId { get; set; }
///
/// 名称
///
public string Name { get; set; }
}
}