Filtration/Filtration.Interface/IDocument.cs

15 lines
303 B
C#
Raw Normal View History

2015-07-25 14:02:42 -04:00
using System.Threading.Tasks;
using System.Windows.Input;
using GalaSoft.MvvmLight.CommandWpf;
2015-07-25 14:02:42 -04:00
namespace Filtration.Interface
{
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();
RelayCommand CloseCommand { get; }
}
}