10 lines
267 B
C#
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; } = "";
|
|
}
|
|
} |