Files
PosterMaker/PosterMaker.Core/Interfaces/Services/ICollectionPosterMakerService.cs
T
Jānis Kacēns 3889e684b4 Initial commit
2024-04-10 12:21:36 +03:00

8 lines
195 B
C#

using PosterMaker.Models;
namespace PosterMaker.Interfaces.Services;
public interface ICollectionPosterMakerService
{
byte[] CreatePoster(string file, ImageProperties imageProperties);
}