mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-08-04 10:40:23 +00:00
89ca08f6cf
- Potentially fixed memory leak in code progress bar - Added using statement in SteamGuardCodeGenerator on disposable HMACSHA1 - Most of packages updated to the last version
14 lines
321 B
C#
14 lines
321 B
C#
using AutoUpdaterDotNET;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace NebulaAuth.ViewModel.Other;
|
|
|
|
public partial class UpdaterVM : ObservableObject
|
|
{
|
|
|
|
public UpdateInfoEventArgs UpdateInfoEventArgs { get; }
|
|
public UpdaterVM(UpdateInfoEventArgs args)
|
|
{
|
|
UpdateInfoEventArgs = args;
|
|
}
|
|
} |