mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 06:14:31 +00:00
c705caac8f
- Compatibility update is completed - Added 'Copy SteamId' menu item in context menu of mafile - Proxy and password automatically saved in mafile after linking - SetCryptPasswordDialog now supports "Enter" hot-key - Loc updates - Added PlannedChanges.txt - Added ClipboardHelper.cs to improved code readability
15 lines
287 B
C#
15 lines
287 B
C#
using System;
|
|
using NebulaAuth.Model.Entities;
|
|
using SteamLib;
|
|
|
|
namespace NebulaAuth.Model.Exceptions;
|
|
|
|
public class MafileNeedReloginException : Exception
|
|
{
|
|
public Mafile Mafile { get; }
|
|
|
|
public MafileNeedReloginException(Mafile mafile)
|
|
{
|
|
Mafile = mafile;
|
|
}
|
|
} |