naps2/NAPS2.Sdk/ImportExport/ImportParams.cs
2019-04-15 21:45:27 -04:00

22 lines
392 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 int? ThumbnailSize { get; set; }
}
}