Catalog/CatalogLib/IImageProcessor.cs
2017-03-16 18:48:25 +01:00

14 lines
250 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CatalogLib
{
public interface IImageProcessor
{
void Start(FileInfo workFile);
}
}