Filtration/Filtration.Interface/IDocument.cs

12 lines
193 B
C#
Raw Normal View History

2015-06-26 12:42:20 -04:00
using System.Windows.Media;
namespace Filtration.Interface
{
public interface IDocument
{
bool IsScript { get; }
2015-06-26 12:42:20 -04:00
bool IsTheme { get; }
void Close();
}
}