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