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