This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
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; }
}