ExpandedSearchInfo/ExpandedSearchInfo/Sections/ISearchInfoSection.cs

11 lines
184 B
C#
Executable File

using System;
namespace ExpandedSearchInfo.Sections {
public interface ISearchInfoSection {
string Name { get; }
Uri Uri { get; }
void Draw();
}
}