ImgMetadataRemover/ImageCore/Files/IOutputSink.cs

15 lines
521 B
C#
Raw Normal View History

namespace Image.Files
2022-01-23 17:30:05 +00:00
{
/// <summary>
2022-02-12 20:12:57 +00:00
/// IOutputSink is an interface for generating saving the generated files..
2022-01-23 17:30:05 +00:00
/// </summary>
2022-02-12 20:12:57 +00:00
public interface IOutputSink
2022-01-23 17:30:05 +00:00
{
/// <summary>
/// Generates an absolute output path given the initial absolute file path.
/// </summary>
/// <param name="initialFilePath">The initial file path.</param>
/// <returns>The formatted absolute output path.</returns>
string GetOutputPath(string initialFilePath);
}
}