mirror of
https://github.com/cyanfish/naps2.git
synced 2024-11-11 02:45:19 +03:00
22 lines
392 B
C#
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; }
|
|
}
|
|
}
|