mirror of
https://github.com/nheiniger/SnaffPoint
synced 2026-06-08 16:23:31 +00:00
10 lines
247 B
C#
10 lines
247 B
C#
namespace SearchQueryTool.Model
|
|
{
|
|
public class SearchResultPresentationSettings
|
|
{
|
|
public const string DefaultFormat = "{counter}. {Title}";
|
|
|
|
public string PrimaryResultsTitleFormat { get; set; } = DefaultFormat;
|
|
}
|
|
}
|