elliebot/src/EllieBot/Modules/Searches/Search/ISearchResultInformation.cs
2024-09-21 14:42:25 +12:00

7 lines
No EOL
150 B
C#

namespace EllieBot.Modules.Searches;
public interface ISearchResultInformation
{
string TotalResults { get; }
string SearchTime { get; }
}