Никита. Реализовал search модели

This commit is contained in:
Никита Потапов 2024-04-17 23:43:41 +04:00
parent ab31efdf50
commit 89a7a7364b
4 changed files with 7 additions and 0 deletions

View File

@ -2,5 +2,6 @@
{
public class CourseSearchModel
{
public int? Id { get; set; }
}
}

View File

@ -2,5 +2,7 @@
{
public class DiagnosisSearchModel
{
public int? Id { get; set; }
public int? ExecutorId { get; set; }
}
}

View File

@ -2,5 +2,8 @@
{
public class ExecutorSearchModel
{
public int? Id { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}

View File

@ -2,5 +2,6 @@
{
public class SymptomSearchModel
{
public int? Id { get; set; }
}
}