Filtration/Filtration.ObjectModel/IItemFilterBlockItem.cs

18 lines
475 B
C#
Raw Normal View History

2015-06-04 13:15:54 -04:00
using System.ComponentModel;
using System.Windows.Media;
2015-06-24 14:57:16 -04:00
namespace Filtration.ObjectModel
2015-06-04 13:15:54 -04:00
{
2015-06-24 14:57:16 -04:00
public interface IItemFilterBlockItem : INotifyPropertyChanged
2015-06-04 13:15:54 -04:00
{
string PrefixText { get; }
2015-06-23 17:21:10 -04:00
string OutputText { get; }
2015-06-04 13:15:54 -04:00
string DisplayHeading { get; }
string SummaryText { get; }
Color SummaryBackgroundColor { get; }
Color SummaryTextColor { get; }
2015-06-23 17:21:10 -04:00
int MaximumAllowed { get; }
2015-06-04 13:15:54 -04:00
int SortOrder { get; }
}
}