elliebot/src/EllieBot/Modules/Searches/Search/ISearchResultEntry.cs
2024-06-18 23:55:36 +12:00

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; }
}