10 lines
164 B
C#
10 lines
164 B
C#
namespace Filtration.Interface
|
|
{
|
|
public interface IDocument
|
|
{
|
|
bool IsScript { get; }
|
|
bool IsTheme { get; }
|
|
void Close();
|
|
}
|
|
}
|