9 lines
172 B
C#
9 lines
172 B
C#
|
|
using System.Drawing;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace MaddoShared;
|
||
|
|
|
||
|
|
public interface IImageCreator
|
||
|
|
{
|
||
|
|
Task CreateImageAsync(ImageState imgState, Image logo);
|
||
|
|
}
|