Filtration/Filtration.ObjectModel/IItemFilterBlockItem.cs

21 lines
592 B
C#
Raw Normal View History

2015-06-04 13:15:54 -04:00
using System.ComponentModel;
using System.Windows.Media;
using Filtration.ObjectModel.Enums;
2015-06-04 13:15:54 -04:00
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; }
BlockItemOrdering SortOrder { get; }
bool IsDirty { get; }
2018-08-31 04:21:43 -04:00
string Comment { get; set; }
2015-06-04 13:15:54 -04:00
}
}