Filtration/Filtration.Interface/IDocument.cs

15 lines
309 B
C#

using System.Threading.Tasks;
using System.Windows.Input;
using GalaSoft.MvvmLight.CommandWpf;
namespace Filtration.Interface
{
public interface IDocument
{
bool IsScript { get; }
bool IsTheme { get; }
Task<bool> Close();
RelayCommand CloseCommand { get; }
}
}