Files
Umbraco-CMS/src/Umbraco.Cms.ManagementApi/ViewModels/Search/SearcherViewModel.cs
Kenn Jacobsen 000324aaba Make Examine API more REST-ish (#13198)
* Make Examine API more REST-ish

* Undo bad renaming

* Move search endpoint under "searchers" route

* Update schema to match new API definition

* Update OpenAPI schema after merge

* Remove "examine" prefixes and change API route from "examine" to "search"

* Update OpenAPI json schema
2022-10-17 17:15:06 +02:00

7 lines
140 B
C#

namespace Umbraco.Cms.ManagementApi.ViewModels.Search;
public class SearcherViewModel
{
public string Name { get; set; } = null!;
}