2023-04-03 21:06:23 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SchoolAgainStudyContracts.SearchModel
|
|
|
|
|
{
|
|
|
|
|
public class StudentSearchModel
|
|
|
|
|
{
|
|
|
|
|
public int? Id { get; set; }
|
|
|
|
|
public string? Login { get; set; }
|
2023-05-17 15:31:34 +04:00
|
|
|
|
public string? Password { get; set; }
|
2023-04-03 21:06:23 +04:00
|
|
|
|
public string? Name { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|