Files
nadekobot/src/Nadeko.Bot.Modules.Searches/Search/ISearchResultEntry.cs
2023-03-26 14:44:25 +02:00

9 lines
195 B
C#

namespace NadekoBot.Modules.Searches;
public interface ISearchResultEntry
{
string Title { get; }
string Url { get; }
string DisplayUrl { get; }
string? Description { get; }
}