16 lines
397 B
C#
16 lines
397 B
C#
namespace FoxTube.Core.Models
|
|
{
|
|
public class SearchSuggestion
|
|
{
|
|
public string Icon { get; set; }
|
|
public string Text { get; set; }
|
|
|
|
public SearchSuggestion(string text) : this(text, false) { }
|
|
public SearchSuggestion(string text, bool isHistoryEntry)
|
|
{
|
|
Text = text;
|
|
Icon = isHistoryEntry ? "\xE81C" : "";
|
|
}
|
|
}
|
|
}
|