Files
Nebula-Auth/NebulaAuth/ViewModel/Other/UpdaterVM.cs
T
Давид Чернопятов 79f62f266c 1.4.6
2024-02-04 19:27:21 +02:00

15 lines
357 B
C#

using AutoUpdaterDotNET;
using CommunityToolkit.Mvvm.ComponentModel;
using Microsoft.VisualBasic.FileIO;
namespace NebulaAuth.ViewModel.Other;
public partial class UpdaterVM : ObservableObject
{
public UpdateInfoEventArgs UpdateInfoEventArgs { get; }
public UpdaterVM(UpdateInfoEventArgs args)
{
UpdateInfoEventArgs = args;
}
}