28 lines
533 B
C#
28 lines
533 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.Classes
|
|
{
|
|
public class ClassStudentViewDto
|
|
{
|
|
public long Id { get; set; }
|
|
public string RealName { get; set; }
|
|
}
|
|
|
|
public class ClassStudentUpdateDto
|
|
{
|
|
public long Id { get; set; }
|
|
public string RealName { get; set; }
|
|
}
|
|
|
|
|
|
public class ClassStudentAddDto
|
|
{
|
|
public string RealName { get; set; }
|
|
}
|
|
|
|
}
|