Filtration/Filtration.ObjectModel/IBlockItemWithTheme.cs

10 lines
206 B
C#
Raw Permalink Normal View History

using Filtration.ObjectModel.ThemeEditor;
namespace Filtration.ObjectModel
{
public interface IBlockItemWithTheme : IItemFilterBlockItem
{
ThemeComponent ThemeComponent { get; }
}
}