Filtration/Filtration.Interface/IDocument.cs

12 lines
195 B
C#

using System.Threading.Tasks;
namespace Filtration.Interface
{
public interface IDocument
{
bool IsScript { get; }
bool IsTheme { get; }
Task Close();
}
}