* 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
7 lines
140 B
C#
7 lines
140 B
C#
namespace Umbraco.Cms.ManagementApi.ViewModels.Search;
|
|
|
|
public class SearcherViewModel
|
|
{
|
|
public string Name { get; set; } = null!;
|
|
}
|