From c9bc71462e35411945ab30557f4497c7badd2983 Mon Sep 17 00:00:00 2001 From: Archi Date: Tue, 24 Jan 2023 01:39:46 +0100 Subject: [PATCH] Misc --- ArchiSteamFarm/Steam/Storage/BotConfig.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ArchiSteamFarm/Steam/Storage/BotConfig.cs b/ArchiSteamFarm/Steam/Storage/BotConfig.cs index edcef88fb..fa41c4e4d 100644 --- a/ArchiSteamFarm/Steam/Storage/BotConfig.cs +++ b/ArchiSteamFarm/Steam/Storage/BotConfig.cs @@ -644,6 +644,7 @@ public sealed class BotConfig { return (botConfig, json != latestJson ? latestJson : null); } + [PublicAPI] public enum EAccess : byte { None, FamilySharing, @@ -652,6 +653,7 @@ public sealed class BotConfig { } [Flags] + [PublicAPI] public enum EBotBehaviour : byte { None = 0, RejectInvalidFriendInvites = 1, @@ -663,6 +665,7 @@ public sealed class BotConfig { All = RejectInvalidFriendInvites | RejectInvalidTrades | RejectInvalidGroupInvites | DismissInventoryNotifications | MarkReceivedMessagesAsRead | MarkBotMessagesAsRead } + [PublicAPI] public enum EFarmingOrder : byte { Unordered, AppIDsAscending, @@ -683,6 +686,7 @@ public sealed class BotConfig { } [Flags] + [PublicAPI] public enum ERedeemingPreferences : byte { None = 0, Forwarding = 1, @@ -693,6 +697,7 @@ public sealed class BotConfig { } [Flags] + [PublicAPI] public enum ERemoteCommunication : byte { None = 0, SteamGroup = 1, @@ -701,6 +706,7 @@ public sealed class BotConfig { } [Flags] + [PublicAPI] public enum ETradingPreferences : byte { None = 0, AcceptDonations = 1,