Filtration/Filtration.Interface/IEditableDocument.cs

12 lines
216 B
C#
Raw Normal View History

2015-07-25 19:02:42 +01:00
using System.Threading.Tasks;
namespace Filtration.Interface
2015-07-02 17:57:43 +01:00
{
public interface IEditableDocument : IDocument
{
bool IsDirty { get; }
2015-07-25 19:02:42 +01:00
Task SaveAsync();
Task SaveAsAsync();
2015-07-02 17:57:43 +01:00
}
}