16 lines
338 B
C#
16 lines
338 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ResultsBrowser.Filters
|
|
{
|
|
public interface IFilter
|
|
{
|
|
string GetThisFilterName();
|
|
void Data2UI();
|
|
void UI2Data(); /// Throws an exception with appropriate message if UI data are invalid
|
|
void Save(StringBuilder sb);
|
|
}
|
|
}
|