11 lines
211 B
C#
11 lines
211 B
C#
using zero.Api.Modules.Search;
|
|
|
|
namespace zero.Api.Configuration;
|
|
|
|
public class ApiOptions
|
|
{
|
|
/// <summary>
|
|
/// Configure search maps
|
|
/// </summary>
|
|
public SearchOptions Search { get; set; } = new();
|
|
} |