9 lines
No EOL
194 B
C#
9 lines
No EOL
194 B
C#
namespace EllieBot.Modules.Searches;
|
|
|
|
public interface ISearchResultEntry
|
|
{
|
|
string Title { get; }
|
|
string Url { get; }
|
|
string DisplayUrl { get; }
|
|
string? Description { get; }
|
|
} |