Add comment support for all rule types

This commit is contained in:
azakhi
2018-08-31 11:21:43 +03:00
parent a86ab3ec8d
commit 65d3e07156
4 changed files with 201 additions and 93 deletions

View File

@@ -17,6 +17,7 @@ namespace Filtration.ObjectModel.BlockItemBaseTypes
public abstract Color SummaryBackgroundColor { get; }
public abstract Color SummaryTextColor { get; }
public abstract int SortOrder { get; }
public string Comment { get; set; }
public bool IsDirty
{

View File

@@ -4,6 +4,6 @@ namespace Filtration.ObjectModel
{
public interface IBlockItemWithTheme : IItemFilterBlockItem
{
ThemeComponent ThemeComponent { get; }
ThemeComponent ThemeComponent { get; set; }
}
}

View File

@@ -14,5 +14,6 @@ namespace Filtration.ObjectModel
int MaximumAllowed { get; }
int SortOrder { get; }
bool IsDirty { get; }
string Comment { get; set; }
}
}