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