2015-06-26 17:42:20 +01:00

12 lines
193 B
C#

using System.Windows.Media;
namespace Filtration.Interface
{
public interface IDocument
{
bool IsScript { get; }
bool IsTheme { get; }
void Close();
}
}