naps2/NAPS2.Core/ImportExport/IAutoSave.cs
2016-07-01 17:49:47 -04:00

15 lines
301 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using NAPS2.Scan;
using NAPS2.Scan.Images;
using NAPS2.Util;
namespace NAPS2.ImportExport
{
public interface IAutoSave
{
bool Save(AutoSaveSettings settings, List<ScannedImage> images, ISaveNotify notify);
}
}