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