Files
Nebula-Auth/NebulaAuth/Model/Exceptions/MafileNeedReloginException.cs
T
Давид Чернопятов c705caac8f 1.5.4 prepared for release
- 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
2024-11-10 14:42:49 +02:00

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;
}
}