10 lines
203 B
C#
10 lines
203 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IImageProvider
|
|
{
|
|
Task<IImageDescriptor> Get(string filePath,
|
|
int width,
|
|
int height,
|
|
bool maintainAspectRatio = false);
|
|
}
|