17 lines
370 B
C#
17 lines
370 B
C#
using LearningOfficer.OA.Common.Request;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.Classes
|
|
{
|
|
public class ClassStudentSearchDto : PageRequest
|
|
{
|
|
public long ClassesId { get; set; }
|
|
public string? StudentName { get; set; }
|
|
|
|
}
|
|
}
|