Catalog/CatalogLib/IImageProcessor.cs

14 lines
250 B
C#
Raw Normal View History

2017-02-28 09:59:17 +01:00
using System;
using System.Collections.Generic;
2017-03-16 18:48:25 +01:00
using System.IO;
2017-02-28 09:59:17 +01:00
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CatalogLib
{
public interface IImageProcessor
{
2017-03-16 18:48:25 +01:00
void Start(FileInfo workFile);
2017-02-28 09:59:17 +01:00
}
}