system-praktyk-api/src/InternshipSystem.Api/Queries/SearchQuery/CompanySearchQuery.cs

10 lines
267 B
C#

namespace InternshipSystem.Api.Queries.SearchQuery
{
public class CompanySearchQuery : SearchQuery
{
/// <summary>
/// Value against which collection will be queried
/// </summary>
public string Name { get; set; } = "";
}
}