9 lines
406 B
C#
9 lines
406 B
C#
namespace ErsatzTV.Core.Api.Search;
|
|
|
|
/// <summary>
|
|
/// One filterable field in the visual rule builder's catalog.
|
|
/// <c>Type</c> is one of: text, fulltext, number, date, enum.
|
|
/// <c>Values</c> is populated only for <c>enum</c> fields (allowed dropdown values); empty otherwise.
|
|
/// </summary>
|
|
public record SearchFieldResponseModel(string Name, string Label, string Type, string Group, string[] Values);
|