Files
Nebula-Auth/NebulaAuth.LegacyConverter/EncryptedManifest.cs
T
achiez 8ff960189e 1.5.6 Bug fixes and code clean-ups
- Update: Added "Copy Password" to Mafile context menu (if available)
- Update: "Save Password" now pre-fills the current password in the "Login Again" dialog when encryption is enabled
- Fix: Prevented overlapping confirmation cycles in AutoConfirmer
- Fix: Added a Snackbar notification when a confirmation cycle is skipped due to a too frequent timer interval
- Fix: Fixed a rare bug where the previous proxy was used instead of the current one during session refresh
- Fix: Corrected "Session Permanently Expired" message showing on unrelated errors (e.g. network issues)
- UI-Fix: Fixed visual glitch where proxy input appeared non-empty when switching to a mafile-specific proxy
- Cleanup: Refactored and cleaned up codebase, improved styling and formatting via ReSharper
2025-05-02 23:29:24 +03:00

40 lines
1.3 KiB
C#

using Newtonsoft.Json;
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
//Pragma disable for legacy code
namespace NebulaAuth.LegacyConverter;
public class Manifest
{
[JsonProperty("encrypted")] public bool Encrypted { get; set; }
[JsonProperty("first_run")] public bool FirstRun { get; set; }
[JsonProperty("entries")] public Entry[] Entries { get; set; }
[JsonProperty("periodic_checking")] public bool PeriodicChecking { get; set; }
[JsonProperty("periodic_checking_interval")]
public long PeriodicCheckingInterval { get; set; }
[JsonProperty("periodic_checking_checkall")]
public bool PeriodicCheckingCheckAll { get; set; }
[JsonProperty("auto_confirm_market_transactions")]
public bool AutoConfirmMarketTransactions { get; set; }
[JsonProperty("auto_confirm_trades")] public bool AutoConfirmTrades { get; set; }
}
public class Entry
{
[JsonProperty("encryption_iv")] public string EncryptionIv { get; set; }
[JsonProperty("encryption_salt")] public string EncryptionSalt { get; set; }
[JsonProperty("filename")] public string Filename { get; set; }
[JsonProperty("steamid")] public ulong SteamId { get; set; }
}