emby-toolbox/EmbyToolbox/Services/ProfileSettingsProvider.cs
Emby Toolbox 6264b487fe Initial commit: Emby Toolbox (conversion scroll fix, bulk Del for tracks).
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-12 21:33:47 +05:00

16 lines
418 B
C#

using System;
namespace EmbyToolbox.Services;
public sealed class ProfileSettingsProvider : IProfileSettingsProvider
{
private readonly Func<string, ConversionProfileSettingsEntry?> _resolve;
public ProfileSettingsProvider(Func<string, ConversionProfileSettingsEntry?> resolve)
{
_resolve = resolve;
}
public ConversionProfileSettingsEntry? GetProfile(string name) => _resolve(name);
}