12 lines
193 B
C#
12 lines
193 B
C#
using System.Windows.Media;
|
|
|
|
namespace Filtration.Interface
|
|
{
|
|
public interface IDocument
|
|
{
|
|
bool IsScript { get; }
|
|
bool IsTheme { get; }
|
|
void Close();
|
|
}
|
|
}
|