forked from EllieBotDevs/elliebot
13 lines
265 B
C#
13 lines
265 B
C#
|
namespace EllieBot.Modules.Searches;
|
|||
|
|
|||
|
public interface IImageSearchResult
|
|||
|
{
|
|||
|
ISearchResultInformation Info { get; }
|
|||
|
|
|||
|
IReadOnlyCollection<IImageSearchResultEntry> Entries { get; }
|
|||
|
}
|
|||
|
|
|||
|
public interface IImageSearchResultEntry
|
|||
|
{
|
|||
|
string Link { get; }
|
|||
|
}
|