2015-07-25 19:02:42 +01:00
|
|
|
|
using System.Threading.Tasks;
|
2018-09-08 22:25:48 +01:00
|
|
|
|
using System.Windows.Input;
|
|
|
|
|
using GalaSoft.MvvmLight.CommandWpf;
|
2015-07-25 19:02:42 +01:00
|
|
|
|
|
|
|
|
|
namespace Filtration.Interface
|
2015-06-26 10:17:32 +01:00
|
|
|
|
{
|
|
|
|
|
public interface IDocument
|
|
|
|
|
{
|
|
|
|
|
bool IsScript { get; }
|
2015-06-26 17:42:20 +01:00
|
|
|
|
bool IsTheme { get; }
|
2015-07-25 19:02:42 +01:00
|
|
|
|
Task Close();
|
2018-09-08 22:25:48 +01:00
|
|
|
|
RelayCommand CloseCommand { get; }
|
2015-06-26 10:17:32 +01:00
|
|
|
|
}
|
|
|
|
|
}
|