0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 07:50:45 -05:00
launcher/project/SPT.Launcher/Views/Notifications/SPTNotificationView.axaml.cs

20 lines
452 B
C#
Raw Permalink Normal View History

2024-05-21 20:15:19 +01:00
using SPT.Launcher.ViewModels.Notifications;
2023-03-03 19:25:33 +00:00
using Avalonia.Markup.Xaml;
using Avalonia.ReactiveUI;
2024-05-21 20:15:19 +01:00
namespace SPT.Launcher.Views.Notifications
2023-03-03 19:25:33 +00:00
{
2024-05-21 20:15:19 +01:00
public partial class SPTNotificationView : ReactiveUserControl<SPTNotificationViewModel>
2023-03-03 19:25:33 +00:00
{
2024-05-21 20:15:19 +01:00
public SPTNotificationView()
2023-03-03 19:25:33 +00:00
{
InitializeComponent();
}
private void InitializeComponent()
{
AvaloniaXamlLoader.Load(this);
}
}
}