Filtration/Filtration.Interface/IDocument.cs

10 lines
164 B
C#
Raw Normal View History

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