9 lines
262 B
C#
9 lines
262 B
C#
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.Images;
|
|
|
|
public record GetCachedImagePath
|
|
(string FileName, ArtworkKind ArtworkKind, int? MaxHeight = null) : IRequest<
|
|
Either<BaseError, CachedImagePathViewModel>>;
|