15 lines
309 B
C#
Raw Permalink Normal View History

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