mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
9 lines
195 B
C#
9 lines
195 B
C#
namespace NadekoBot.Modules.Searches;
|
|
|
|
public interface ISearchResultEntry
|
|
{
|
|
string Title { get; }
|
|
string Url { get; }
|
|
string DisplayUrl { get; }
|
|
string? Description { get; }
|
|
} |