25 lines
476 B
C#
25 lines
476 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace YD_XinWei.Commons.Dto.School
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 班级列表
|
|||
|
/// </summary>
|
|||
|
public class ClassListDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 班级Id
|
|||
|
/// </summary>
|
|||
|
public int ClassId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 名称
|
|||
|
/// </summary>
|
|||
|
public string Name { get; set; }
|
|||
|
}
|
|||
|
}
|