8 lines
167 B
C#
8 lines
167 B
C#
|
namespace MyDarling.Services
|
||
|
{
|
||
|
public interface IImageResizer
|
||
|
{
|
||
|
public void CreateThumbnail(string filePath);
|
||
|
public void DownsizeImage(string filePath);
|
||
|
}
|
||
|
}
|