Files
mixtape/zero.Api/Configuration/ApiOptions.cs
T

11 lines
213 B
C#
Raw Normal View History

2021-12-01 13:03:06 +01:00
using zero.Api.Endpoints.Search;
2021-11-29 18:25:50 +01:00
namespace zero.Api.Configuration;
public class ApiOptions
{
/// <summary>
/// Configure search maps
/// </summary>
public SearchOptions Search { get; set; } = new();
}