ImgMetadataRemover/Image/IOutputFormatter.cs

7 lines
122 B
C#
Raw Normal View History

2022-01-22 17:06:10 +00:00
namespace Image
{
public interface IOutputFormatter
{
string FormatOutputPath(string filePath);
}
}