8 lines
191 B
C#
8 lines
191 B
C#
using PosterMaker.Models;
|
|
|
|
namespace PosterMaker.Interfaces.Services;
|
|
|
|
public interface ISeriesPosterMakerService
|
|
{
|
|
byte[] CreatePoster(string file, ImageProperties imageProperties);
|
|
} |