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

17 lines
340 B
C#

using System.Windows;
using EmbyToolbox.Interop;
using EmbyToolbox.Services;
namespace EmbyToolbox;
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
_ = AppUserModelIdRegistration.TryRegister(NotificationService.ToastAppUserModelId);
base.OnStartup(e);
}
}