10 lines
202 B
C#
10 lines
202 B
C#
using FileSearch.Logic.UI.ViewBuilders;
|
|
|
|
namespace FileSearch.Logic.Plugin
|
|
{
|
|
public interface IViewBuilderFactory
|
|
{
|
|
IViewBuilder CreateViewBuilder(ICriterionPlugin criteria);
|
|
}
|
|
}
|