10 lines
164 B
C#
Raw Normal View History

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