8 lines
253 B
C#
8 lines
253 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>>;
|