mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
15 lines
314 B
C#
15 lines
314 B
C#
using System.Windows;
|
|
using OwnCord.Client.ViewModels;
|
|
|
|
namespace OwnCord.Client.Views;
|
|
|
|
public partial class UpdateDialog : Window
|
|
{
|
|
public UpdateDialog(UpdateViewModel viewModel)
|
|
{
|
|
InitializeComponent();
|
|
DataContext = viewModel;
|
|
viewModel.CloseRequested += () => Close();
|
|
}
|
|
}
|