using System.Collections.Generic; using ErsatzTV.Core; using LanguageExt; namespace ErsatzTV.Application.Emby.Commands { public record UpdateEmbyPathReplacements( int EmbyMediaSourceId, List PathReplacements) : MediatR.IRequest>; public record EmbyPathReplacementItem(int Id, string EmbyPath, string LocalPath); }