Filtration/Filtration.Interface/IEditableDocument.cs

12 lines
216 B
C#
Raw Normal View History

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