Filtration/Filtration.ObjectModel/IBlockItemWithTheme.cs

10 lines
211 B
C#
Raw Normal View History

using Filtration.ObjectModel.ThemeEditor;
namespace Filtration.ObjectModel
{
public interface IBlockItemWithTheme : IItemFilterBlockItem
{
2018-08-31 04:21:43 -04:00
ThemeComponent ThemeComponent { get; set; }
}
}