Files
nadekobot/src/NadekoBot/Modules/Searches/Search/ISearchResultInformation.cs

7 lines
151 B
C#

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