namespace Image.Core { /// /// Interface for implementing metadata removers. /// public interface IMetadataRemover { /// /// CleanImage cleans an image and saves it.. /// /// The file path to save the clean image. void CleanImage(string newFilePath); } }