using MediatR; using Modules.Library.Application.Commands.CommonModels; using Modules.Library.Application.Gateways; namespace Modules.Library.Application.Commands.Anime.Title.Properties.Preview; public class SetPreviewCommand : IRequest { public Guid TitleId { get; set; } public string Url { get; set; } = default!; public MediaInfoType Type { get; set; } public string ContentType { get; set; } = default!; } public class SetPreviewCommandHandler(IAnimeTitleGateway titleGateway) : IRequestHandler { public async Task Handle(SetPreviewCommand request, CancellationToken cancellationToken) { var title = await titleGateway.GetById(request.TitleId); title.CommonProperties.SetPreview(request.Url, (Domain.Entities.MediaInfoType)request.Type, request.ContentType); await titleGateway.Update(title); return Unit.Value; } }