StudentEnrollmentNew/StudentEnrollment/StudentEnrollmentContracts/SearchModels/StudentSearchModel.cs

9 lines
168 B
C#
Raw Normal View History

namespace StudentEnrollmentContracts.SearchModels
{
public class StudentSearchModel
{
2024-05-06 20:26:16 +04:00
public int? student_id { get; set; }
public long? tin { get; set; }
}
}