mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 06:14:31 +00:00
15 lines
357 B
C#
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;
|
|
}
|
|
} |