namespace zero.Api.Endpoints.Search; public class SearchOptions : List { public bool Enabled { get; set; } public SearchIndexMap Map(string icon = null) where T : ZeroEntity, new() { SearchIndexMap map = new(icon); Add(map); return map; } }