0
0
MyDarling/Services/IImageResizer.cs
2023-06-05 07:01:44 +03:00

8 lines
167 B
C#

namespace MyDarling.Services
{
public interface IImageResizer
{
public void CreateThumbnail(string filePath);
public void DownsizeImage(string filePath);
}
}