11 lines
297 B
C#
11 lines
297 B
C#
using InternshipSystem.Api.Queries.SearchQuery;
|
|
|
|
namespace InternshipSystem.Api.Controllers
|
|
{
|
|
public class StudentSearchQuery : SearchQuery
|
|
{
|
|
public int? AlbumNumber { get; set; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
}
|
|
} |