naps2/NAPS2.Sdk/ImportExport/ImportParams.cs
2018-11-25 12:37:54 -05:00

22 lines
391 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using NAPS2.Util;
namespace NAPS2.ImportExport
{
public class ImportParams
{
public ImportParams()
{
Slice = Slice.Default;
}
public Slice Slice { get; set; }
public bool DetectPatchCodes { get; set; }
public bool NoThumbnails { get; set; }
}
}