mirror of
https://github.com/cyanfish/naps2.git
synced 2024-11-11 02:45:19 +03:00
11 lines
178 B
C#
11 lines
178 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace NAPS2.ImportExport.Pdf
|
|
{
|
|
public interface IPdfImporter : IScannedImageImporter
|
|
{
|
|
}
|
|
}
|