diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/EMsgExtensions.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/EMsgExtensions.cs index c0199c06b..8bf5aaeb6 100644 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/EMsgExtensions.cs +++ b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/EMsgExtensions.cs @@ -2,11 +2,9 @@ using System.Collections.Generic; using SteamKit2; -using Artifact = SteamKit2.GC.Artifact.Internal; using CSGO = SteamKit2.GC.CSGO.Internal; using Dota = SteamKit2.GC.Dota.Internal; using TF2 = SteamKit2.GC.TF2.Internal; -using Underlords = SteamKit2.GC.Underlords.Internal; namespace NetHookAnalyzer2 { @@ -48,7 +46,7 @@ static IEnumerable GetGCEMsgEnums(uint appId) yield return typeof(Dota.EGCBaseClientMsg); break; - case WellKnownAppIDs.CounterStrikeGlobalOffensive: + case WellKnownAppIDs.CounterStrike2: yield return typeof(CSGO.ECsgoGCMsg); yield return typeof(CSGO.EGCBaseMsg); yield return typeof(CSGO.ESOMsg); @@ -56,26 +54,6 @@ static IEnumerable GetGCEMsgEnums(uint appId) yield return typeof(CSGO.EGCItemMsg); yield return typeof(CSGO.EGCBaseClientMsg); break; - - case WellKnownAppIDs.Artifact: - yield return typeof(Artifact.EGCBaseMsg); - yield return typeof(Artifact.ESOMsg); - yield return typeof(Artifact.EGCItemMsg); - yield return typeof(Artifact.EGCBaseClientMsg); - yield return typeof(Artifact.EGCDCGClientMessages); - yield return typeof(Artifact.EGCDCGCommonMessages); - yield return typeof(Artifact.EGCDCGServerMessages); - break; - - case WellKnownAppIDs.Underlords: - yield return typeof( Underlords.EGCBaseMsg ); - yield return typeof( Underlords.ESOMsg ); - yield return typeof( Underlords.EGCItemMsg ); - yield return typeof( Underlords.EGCBaseClientMsg ); - yield return typeof( Underlords.EGCDACClientMessages ); - yield return typeof( Underlords.EGCDACCommonMessages ); - yield return typeof( Underlords.EGCDACServerMessages ); - break; } } } diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/MainForm.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/MainForm.cs index 13a769e63..06eff581a 100644 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/MainForm.cs +++ b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/MainForm.cs @@ -52,12 +52,6 @@ static ISpecialization[] LoadMessageObjectSpecializations() new TF2CacheSubscribedGCSpecialization(), new TF2SOMultipleObjectsGCSpecialization(), new TF2SOSingleObjectGCSpecialization(), - new ArtifactCacheSubscribedGCSpecialization(), - new ArtifactSOMultipleObjectsGCSpecialization(), - new ArtifactSOSingleObjectGCSpecialization(), - new UnderlordsCacheSubscribedGCSpecialization(), - new UnderlordsSOMultipleObjectsGCSpecialization(), - new UnderlordsSOSingleObjectGCSpecialization(), } } }; diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/MessageTypeFinder.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/MessageTypeFinder.cs index 3bb2c977f..5882ef1fb 100644 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/MessageTypeFinder.cs +++ b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/MessageTypeFinder.cs @@ -126,17 +126,9 @@ static IEnumerable GetPossibleGCTypePrefixes(uint appid) yield return "SteamKit2.GC.Dota.Internal.CMsg"; break; - case WellKnownAppIDs.CounterStrikeGlobalOffensive: + case WellKnownAppIDs.CounterStrike2: yield return "SteamKit2.GC.CSGO.Internal.CMsg"; - break; - - case WellKnownAppIDs.Artifact: - yield return "SteamKit2.GC.Artifact.Internal.CMsg"; break; - - case WellKnownAppIDs.Underlords: - yield return "SteamKit2.GC.Underlords.Internal.CMsg"; - break; } } } diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/MessageTypeOverrides.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/MessageTypeOverrides.cs index fbc4376aa..36d0eec7c 100644 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/MessageTypeOverrides.cs +++ b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/MessageTypeOverrides.cs @@ -6,8 +6,6 @@ using CSGO = SteamKit2.GC.CSGO.Internal; using Dota = SteamKit2.GC.Dota.Internal; using TF2 = SteamKit2.GC.TF2.Internal; -using Artifact = SteamKit2.GC.Artifact.Internal; -using Underlords = SteamKit2.GC.Underlords.Internal; namespace NetHookAnalyzer2 { @@ -67,7 +65,7 @@ static class MessageTypeOverrides [(uint)Dota.EDOTAGCMsg.k_EMsgGCToClientTeamsInfo] = typeof(Dota.CMsgDOTATeamsInfo), [(uint)Dota.EDOTAGCMsg.k_EMsgClientToGCMyTeamInfoRequest] = typeof(Dota.CMsgDOTAMyTeamInfoRequest), }, - [WellKnownAppIDs.CounterStrikeGlobalOffensive] = new Dictionary + [WellKnownAppIDs.CounterStrike2] = new Dictionary { [(uint)CSGO.EGCBaseClientMsg.k_EMsgGCClientHello] = typeof(CSGO.CMsgClientHello), [(uint)CSGO.EGCBaseClientMsg.k_EMsgGCClientWelcome] = typeof(CSGO.CMsgClientWelcome), @@ -81,34 +79,6 @@ static class MessageTypeOverrides [(uint)CSGO.ESOMsg.k_ESOMsg_Update] = typeof(CSGO.CMsgSOSingleObject), [(uint)CSGO.ESOMsg.k_ESOMsg_UpdateMultiple] = typeof(CSGO.CMsgSOMultipleObjects), }, - [WellKnownAppIDs.Artifact] = new Dictionary - { - [(uint)Artifact.EGCBaseClientMsg.k_EMsgGCClientHello] = typeof(Artifact.CMsgClientHello), - [(uint)Artifact.EGCBaseClientMsg.k_EMsgGCClientWelcome] = typeof(Artifact.CMsgClientWelcome), - [(uint)Artifact.EGCBaseClientMsg.k_EMsgGCServerHello] = typeof(Artifact.CMsgClientHello), - [(uint)Artifact.EGCBaseClientMsg.k_EMsgGCServerWelcome] = typeof(Artifact.CMsgClientWelcome), - [(uint)Artifact.EGCBaseClientMsg.k_EMsgGCClientConnectionStatus] = typeof(Artifact.CMsgConnectionStatus), - [(uint)Artifact.EGCBaseClientMsg.k_EMsgGCServerConnectionStatus] = typeof(Artifact.CMsgConnectionStatus), - - [(uint)Artifact.ESOMsg.k_ESOMsg_Create] = typeof(Artifact.CMsgSOSingleObject), - [(uint)Artifact.ESOMsg.k_ESOMsg_Destroy] = typeof(Artifact.CMsgSOSingleObject), - [(uint)Artifact.ESOMsg.k_ESOMsg_Update] = typeof(Artifact.CMsgSOSingleObject), - [(uint)Artifact.ESOMsg.k_ESOMsg_UpdateMultiple] = typeof(Artifact.CMsgSOMultipleObjects), - }, - [ WellKnownAppIDs.Underlords ] = new Dictionary - { - [(uint)Underlords.EGCBaseClientMsg.k_EMsgGCClientHello] = typeof(Underlords.CMsgClientHello), - [(uint)Underlords.EGCBaseClientMsg.k_EMsgGCClientWelcome] = typeof(Underlords.CMsgClientWelcome), - [(uint)Underlords.EGCBaseClientMsg.k_EMsgGCServerHello] = typeof(Underlords.CMsgClientHello), - [(uint)Underlords.EGCBaseClientMsg.k_EMsgGCServerWelcome] = typeof(Underlords.CMsgClientWelcome), - [(uint)Underlords.EGCBaseClientMsg.k_EMsgGCClientConnectionStatus] = typeof(Underlords.CMsgConnectionStatus), - [(uint)Underlords.EGCBaseClientMsg.k_EMsgGCServerConnectionStatus] = typeof(Underlords.CMsgConnectionStatus), - - [(uint)Underlords.ESOMsg.k_ESOMsg_Create] = typeof(Underlords.CMsgSOSingleObject), - [(uint)Underlords.ESOMsg.k_ESOMsg_Destroy] = typeof(Underlords.CMsgSOSingleObject), - [(uint)Underlords.ESOMsg.k_ESOMsg_Update] = typeof(Underlords.CMsgSOSingleObject), - [(uint)Underlords.ESOMsg.k_ESOMsg_UpdateMultiple] = typeof(Underlords.CMsgSOMultipleObjects), - }, }; } } diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Artifact/ArtifactSOCacheSubscribedGCSpecialization.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Artifact/ArtifactSOCacheSubscribedGCSpecialization.cs deleted file mode 100644 index 9b3d51b64..000000000 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Artifact/ArtifactSOCacheSubscribedGCSpecialization.cs +++ /dev/null @@ -1,61 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using ProtoBuf; -using ProtoBuf.Meta; -using SteamKit2.GC.Artifact.Internal; - -namespace NetHookAnalyzer2.Specializations -{ - class ArtifactCacheSubscribedGCSpecialization : IGameCoordinatorSpecialization - { - public IEnumerable> GetExtraObjects(object body, uint appID) - { - if (appID != WellKnownAppIDs.Artifact) - { - yield break; - } - - var cacheSubscribed = body as CMsgSOCacheSubscribed; - if (cacheSubscribed == null) - { - yield break; - } - - foreach (var bucket in cacheSubscribed.objects) - { - int typeId = bucket.type_id; - foreach (var singleObject in bucket.object_data) - { - var extraNode = ReadExtraObject(singleObject, typeId); - if (extraNode != null) - { - yield return new KeyValuePair(string.Format("SO ({0})", extraNode.GetType().Name), extraNode); - } - } - } - } - - object ReadExtraObject(byte[] sharedObject, int typeId) - { - try - { - using var ms = new MemoryStream( sharedObject ); - if ( ArtifactSOHelper.SOTypes.TryGetValue( typeId, out var t ) ) - { - return RuntimeTypeModel.Default.Deserialize( ms, null, t ); - } - } - catch (ProtoException ex) - { - return "Error parsing SO data: " + ex.Message; - } - catch (EndOfStreamException ex) - { - return "Error parsing SO data: " + ex.Message; - } - - return null; - } - } -} diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Artifact/ArtifactSOHelper.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Artifact/ArtifactSOHelper.cs deleted file mode 100644 index b76cb7a65..000000000 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Artifact/ArtifactSOHelper.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using SteamKit2.GC.Artifact.Internal; - -namespace NetHookAnalyzer2.Specializations -{ - static class ArtifactSOHelper - { - public static Dictionary SOTypes = new Dictionary() - { - {1, typeof(CSOEconItem)}, - {7, typeof(CSOEconGameAccountClient)}, - - - {101, typeof(CSODCGLobby) }, - {102, typeof(CSOPlayerLimitedProgress) }, - {104, typeof(CSODCGServerLobby) }, - {106, typeof(CSOGameAccountClient) }, - {107, typeof(CSOPhantomItem) }, - {108, typeof(CSOCardAchievement) }, - {109, typeof(CSOGauntlet) }, - {110, typeof(CSODCGPrivateLobby) }, - {111, typeof(CSOTourneyMembership) }, - {112, typeof(CSODCGTourneyInvite) }, - }; - } -} diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Artifact/ArtifactSOMultipleObjectsGCSpecialization.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Artifact/ArtifactSOMultipleObjectsGCSpecialization.cs deleted file mode 100644 index b376835da..000000000 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Artifact/ArtifactSOMultipleObjectsGCSpecialization.cs +++ /dev/null @@ -1,75 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using ProtoBuf; -using ProtoBuf.Meta; -using SteamKit2.GC.Artifact.Internal; - -namespace NetHookAnalyzer2.Specializations -{ - class ArtifactSOMultipleObjectsGCSpecialization : IGameCoordinatorSpecialization - { - public IEnumerable> GetExtraObjects(object body, uint appID) - { - if (appID != WellKnownAppIDs.Artifact) - { - yield break; - } - - var updateMultiple = body as CMsgSOMultipleObjects; - if (updateMultiple == null) - { - yield break; - } - - foreach(var singleObject in updateMultiple.objects_added) - { - var extraNode = ReadExtraObject(singleObject); - if (extraNode != null) - { - yield return new KeyValuePair(string.Format("New SO ({0})", extraNode.GetType().Name), extraNode); - } - } - - foreach (var singleObject in updateMultiple.objects_modified) - { - var extraNode = ReadExtraObject(singleObject); - if (extraNode != null) - { - yield return new KeyValuePair(string.Format("Modified SO ({0})", extraNode.GetType().Name), extraNode); - } - } - - foreach (var singleObject in updateMultiple.objects_removed) - { - var extraNode = ReadExtraObject(singleObject); - if (extraNode != null) - { - yield return new KeyValuePair(string.Format("Removed SO ({0})", extraNode.GetType().Name), extraNode); - } - } - } - - object ReadExtraObject(CMsgSOMultipleObjects.SingleObject sharedObject) - { - try - { - using var ms = new MemoryStream( sharedObject.object_data ); - if ( ArtifactSOHelper.SOTypes.TryGetValue( sharedObject.type_id, out var t ) ) - { - return RuntimeTypeModel.Default.Deserialize( ms, null, t ); - } - } - catch (ProtoException ex) - { - return "Error parsing SO data: " + ex.Message; - } - catch (EndOfStreamException ex) - { - return "Error parsing SO data: " + ex.Message; - } - - return null; - } - } -} diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Artifact/ArtifactSOSingleObjectGCSpecialization.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Artifact/ArtifactSOSingleObjectGCSpecialization.cs deleted file mode 100644 index 17dfa2ca2..000000000 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Artifact/ArtifactSOSingleObjectGCSpecialization.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using ProtoBuf; -using ProtoBuf.Meta; -using SteamKit2.GC.Artifact.Internal; - -namespace NetHookAnalyzer2.Specializations -{ - class ArtifactSOSingleObjectGCSpecialization : IGameCoordinatorSpecialization - { - public IEnumerable> GetExtraObjects(object body, uint appID) - { - if (appID != WellKnownAppIDs.Artifact) - { - yield break; - } - - var updateSingle = body as CMsgSOSingleObject; - if (updateSingle == null) - { - yield break; - } - - var extraNode = ReadExtraObject(updateSingle); - if (extraNode != null) - { - yield return new KeyValuePair(string.Format("SO ({0})", extraNode.GetType().Name), extraNode); - } - } - - object ReadExtraObject(CMsgSOSingleObject sharedObject) - { - try - { - using var ms = new MemoryStream( sharedObject.object_data ); - if ( ArtifactSOHelper.SOTypes.TryGetValue( sharedObject.type_id, out var t ) ) - { - return RuntimeTypeModel.Default.Deserialize( ms, null, t ); - } - } - catch (ProtoException ex) - { - return "Error parsing SO data: " + ex.Message; - } - catch (EndOfStreamException ex) - { - return "Error parsing SO data: " + ex.Message; - } - - return null; - } - } -} diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/CSGO/CSGOSOCacheSubscribedGCSpecialization.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/CSGO/CSGOSOCacheSubscribedGCSpecialization.cs index 36a12f9d1..a7189f7e8 100644 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/CSGO/CSGOSOCacheSubscribedGCSpecialization.cs +++ b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/CSGO/CSGOSOCacheSubscribedGCSpecialization.cs @@ -10,7 +10,7 @@ class CSGOCacheSubscribedGCSpecialization : IGameCoordinatorSpecialization { public IEnumerable> GetExtraObjects(object body, uint appID) { - if (appID != WellKnownAppIDs.CounterStrikeGlobalOffensive) + if (appID != WellKnownAppIDs.CounterStrike2) { yield break; } diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/CSGO/CSGOSOMultipleObjectsGCSpecialization.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/CSGO/CSGOSOMultipleObjectsGCSpecialization.cs index c8f14dfa3..374b2dcc2 100644 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/CSGO/CSGOSOMultipleObjectsGCSpecialization.cs +++ b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/CSGO/CSGOSOMultipleObjectsGCSpecialization.cs @@ -11,7 +11,7 @@ class CSGOSOMultipleObjectsGCSpecialization : IGameCoordinatorSpecialization { public IEnumerable> GetExtraObjects(object body, uint appID) { - if (appID != WellKnownAppIDs.CounterStrikeGlobalOffensive) + if (appID != WellKnownAppIDs.CounterStrike2) { yield break; } diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/CSGO/CSGOSOSingleObjectGCSpecialization.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/CSGO/CSGOSOSingleObjectGCSpecialization.cs index c51b43e3b..8ab2fe4a2 100644 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/CSGO/CSGOSOSingleObjectGCSpecialization.cs +++ b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/CSGO/CSGOSOSingleObjectGCSpecialization.cs @@ -11,7 +11,7 @@ class CSGOSOSingleObjectGCSpecialization : IGameCoordinatorSpecialization { public IEnumerable> GetExtraObjects(object body, uint appID) { - if (appID != WellKnownAppIDs.CounterStrikeGlobalOffensive) + if (appID != WellKnownAppIDs.CounterStrike2) { yield break; } diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Underlords/UnderlordsSOCacheSubscribedGCSpecialization.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Underlords/UnderlordsSOCacheSubscribedGCSpecialization.cs deleted file mode 100644 index 50c014804..000000000 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Underlords/UnderlordsSOCacheSubscribedGCSpecialization.cs +++ /dev/null @@ -1,61 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using ProtoBuf; -using ProtoBuf.Meta; -using SteamKit2.GC.Underlords.Internal; - -namespace NetHookAnalyzer2.Specializations -{ - class UnderlordsCacheSubscribedGCSpecialization : IGameCoordinatorSpecialization - { - public IEnumerable> GetExtraObjects(object body, uint appID) - { - if (appID != WellKnownAppIDs.Underlords) - { - yield break; - } - - var cacheSubscribed = body as CMsgSOCacheSubscribed; - if (cacheSubscribed == null) - { - yield break; - } - - foreach (var bucket in cacheSubscribed.objects) - { - int typeId = bucket.type_id; - foreach (var singleObject in bucket.object_data) - { - var extraNode = ReadExtraObject(singleObject, typeId); - if (extraNode != null) - { - yield return new KeyValuePair(string.Format("SO ({0})", extraNode.GetType().Name), extraNode); - } - } - } - } - - object ReadExtraObject(byte[] sharedObject, int typeId) - { - try - { - using var ms = new MemoryStream( sharedObject ); - if ( UnderlordsSOHelper.SOTypes.TryGetValue( typeId, out var t ) ) - { - return RuntimeTypeModel.Default.Deserialize( ms, null, t ); - } - } - catch (ProtoException ex) - { - return "Error parsing SO data: " + ex.Message; - } - catch (EndOfStreamException ex) - { - return "Error parsing SO data: " + ex.Message; - } - - return null; - } - } -} diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Underlords/UnderlordsSOHelper.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Underlords/UnderlordsSOHelper.cs deleted file mode 100644 index 48efe5eaf..000000000 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Underlords/UnderlordsSOHelper.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; -using System.Collections.Generic; -using SteamKit2.GC.Underlords.Internal; - -namespace NetHookAnalyzer2.Specializations -{ - static class UnderlordsSOHelper - { - public static Dictionary SOTypes = new Dictionary() - { - {1, typeof(CSOEconItem)}, - {3, typeof(CSOEconClaimCode)}, - {5, typeof(CSOItemRecipe)}, - {7, typeof(CSOEconGameAccountClient)}, - {38, typeof(CSOEconItemDropRateBonus)}, - {39, typeof(CSOEconItemLeagueViewPass)}, - {40, typeof(CSOEconItemEventTicket)}, - {42, typeof(CSOEconItemTournamentPassport)}, - - {101, typeof(CSODACLobby)}, - {102, typeof(CSODACServerDynamicLobby)}, - {103, typeof(CSOGameAccountClient)}, - {104, typeof(CSODACParty)}, - {105, typeof(CSODACServerStaticLobby)}, - {106, typeof(CSOAccountSyncStorage)}, - }; - } -} diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Underlords/UnderlordsSOMultipleObjectsGCSpecialization.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Underlords/UnderlordsSOMultipleObjectsGCSpecialization.cs deleted file mode 100644 index b1c39ca52..000000000 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Underlords/UnderlordsSOMultipleObjectsGCSpecialization.cs +++ /dev/null @@ -1,75 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using ProtoBuf; -using ProtoBuf.Meta; -using SteamKit2.GC.Underlords.Internal; - -namespace NetHookAnalyzer2.Specializations -{ - class UnderlordsSOMultipleObjectsGCSpecialization : IGameCoordinatorSpecialization - { - public IEnumerable> GetExtraObjects(object body, uint appID) - { - if (appID != WellKnownAppIDs.Underlords) - { - yield break; - } - - var updateMultiple = body as CMsgSOMultipleObjects; - if (updateMultiple == null) - { - yield break; - } - - foreach(var singleObject in updateMultiple.objects_added) - { - var extraNode = ReadExtraObject(singleObject); - if (extraNode != null) - { - yield return new KeyValuePair(string.Format("New SO ({0})", extraNode.GetType().Name), extraNode); - } - } - - foreach (var singleObject in updateMultiple.objects_modified) - { - var extraNode = ReadExtraObject(singleObject); - if (extraNode != null) - { - yield return new KeyValuePair(string.Format("Modified SO ({0})", extraNode.GetType().Name), extraNode); - } - } - - foreach (var singleObject in updateMultiple.objects_removed) - { - var extraNode = ReadExtraObject(singleObject); - if (extraNode != null) - { - yield return new KeyValuePair(string.Format("Removed SO ({0})", extraNode.GetType().Name), extraNode); - } - } - } - - object ReadExtraObject(CMsgSOMultipleObjects.SingleObject sharedObject) - { - try - { - using var ms = new MemoryStream(sharedObject.object_data); - if (UnderlordsSOHelper.SOTypes.TryGetValue(sharedObject.type_id, out var t)) - { - return RuntimeTypeModel.Default.Deserialize(ms, null, t); - } - } - catch (ProtoException ex) - { - return "Error parsing SO data: " + ex.Message; - } - catch (EndOfStreamException ex) - { - return "Error parsing SO data: " + ex.Message; - } - - return null; - } - } -} diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Underlords/UnderlordsSOSingleObjectGCSpecialization.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Underlords/UnderlordsSOSingleObjectGCSpecialization.cs deleted file mode 100644 index ca341cf0b..000000000 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/Specializations/Underlords/UnderlordsSOSingleObjectGCSpecialization.cs +++ /dev/null @@ -1,54 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using ProtoBuf; -using ProtoBuf.Meta; -using SteamKit2.GC.Underlords.Internal; - -namespace NetHookAnalyzer2.Specializations -{ - class UnderlordsSOSingleObjectGCSpecialization : IGameCoordinatorSpecialization - { - public IEnumerable> GetExtraObjects(object body, uint appID) - { - if (appID != WellKnownAppIDs.Underlords) - { - yield break; - } - - var updateSingle = body as CMsgSOSingleObject; - if (updateSingle == null) - { - yield break; - } - - var extraNode = ReadExtraObject(updateSingle); - if (extraNode != null) - { - yield return new KeyValuePair(string.Format("SO ({0})", extraNode.GetType().Name), extraNode); - } - } - - object ReadExtraObject(CMsgSOSingleObject sharedObject) - { - try - { - using var ms = new MemoryStream( sharedObject.object_data ); - if ( UnderlordsSOHelper.SOTypes.TryGetValue( sharedObject.type_id, out var t ) ) - { - return RuntimeTypeModel.Default.Deserialize( ms, null, t ); - } - } - catch (ProtoException ex) - { - return "Error parsing SO data: " + ex.Message; - } - catch (EndOfStreamException ex) - { - return "Error parsing SO data: " + ex.Message; - } - - return null; - } - } -} diff --git a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/WellKnownAppIDs.cs b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/WellKnownAppIDs.cs index c4c8835d6..1aa72f72f 100644 --- a/Resources/NetHookAnalyzer2/NetHookAnalyzer2/WellKnownAppIDs.cs +++ b/Resources/NetHookAnalyzer2/NetHookAnalyzer2/WellKnownAppIDs.cs @@ -2,10 +2,8 @@ { static class WellKnownAppIDs { - public const uint CounterStrikeGlobalOffensive = 730; + public const uint CounterStrike2 = 730; public const uint Dota2 = 570; public const uint TeamFortress2 = 440; - public const uint Artifact = 583950; - public const uint Underlords = 1046930; } } diff --git a/Resources/ProtobufGen/protos.csv b/Resources/ProtobufGen/protos.csv index 21bf848ab..93834de44 100644 --- a/Resources/ProtobufGen/protos.csv +++ b/Resources/ProtobufGen/protos.csv @@ -67,15 +67,6 @@ steam,steammessages_unified_base.steamclient.proto,SteamMsgUnifiedBase.cs,SteamK steam,steammessages_useraccount.steamclient.proto,SteamMsgUserAccount.cs,SteamKit2.Internal steam,steammessages_video.steamclient.proto,SteamMsgVideo.cs,SteamKit2.Internal steam,steammessages_workshop.steamclient.proto,SteamMsgWorkshop.cs,SteamKit2.Internal -artifact,base_gcmessages.proto,GC\Artifact\SteamMsgGC.cs,SteamKit2.GC.Artifact.Internal -artifact,dcg_gcmessages_client.proto,GC\Artifact\MsgGCClient.cs,SteamKit2.GC.Artifact.Internal -artifact,dcg_gcmessages_common.proto,GC\Artifact\MsgGCCommon.cs,SteamKit2.GC.Artifact.Internal -artifact,dcg_gcmessages_server.proto,GC\Artifact\MsgGCServer.cs,SteamKit2.GC.Artifact.Internal -artifact,econ_gcmessages.proto,GC\Artifact\SteamMsgGCEcon.cs,SteamKit2.GC.Artifact.Internal -artifact,econ_shared_enums.proto,GC\Artifact\SteamMsgGCEconSharedEnums.cs,SteamKit2.GC.Artifact.Internal -artifact,gcsdk_gcmessages.proto,GC\Artifact\SteamMsgGCSDK.cs,SteamKit2.GC.Artifact.Internal -artifact,gcsystemmsgs.proto,GC\Artifact\SteamMsgGCSystem.cs,SteamKit2.GC.Artifact.Internal -artifact,steammessages.proto,GC\Artifact\SteamMsgBase.cs,SteamKit2.GC.Artifact.Internal csgo,base_gcmessages.proto,GC\CSGO\SteamMsgGC.cs,SteamKit2.GC.CSGO.Internal csgo,cstrike15_gcmessages.proto,GC\CSGO\MsgGC.cs,SteamKit2.GC.CSGO.Internal csgo,econ_gcmessages.proto,GC\CSGO\SteamMsgGCEcon.cs,SteamKit2.GC.CSGO.Internal @@ -118,19 +109,6 @@ tf2,gcsdk_gcmessages.proto,GC\TF2\SteamMsgGCSDK.cs,SteamKit2.GC.TF2.Internal tf2,gcsystemmsgs.proto,GC\TF2\SteamMsgGCSystem.cs,SteamKit2.GC.TF2.Internal tf2,steammessages.proto,GC\TF2\SteamMsgBase.cs,SteamKit2.GC.TF2.Internal tf2,tf_gcmessages.proto,GC\TF2\MsgGC.cs,SteamKit2.GC.TF2.Internal -underlords,steammessages.proto,GC\Underlords\SteamMsgBase.cs,SteamKit2.GC.Underlords.Internal -underlords,dac_gamemessages.proto,GC\Underlords\MsgDacGame.cs,SteamKit2.GC.Underlords.Internal -underlords,dac_gcmessages_common.proto,GC\Underlords\MsgGCCommon.cs,SteamKit2.GC.Underlords.Internal -underlords,dac_gcmessages_client.proto,GC\Underlords\MsgGCClient.cs,SteamKit2.GC.Underlords.Internal -underlords,dac_gcmessages_server.proto,GC\Underlords\MsgGCServer.cs,SteamKit2.GC.Underlords.Internal -underlords,base_gcmessages.proto,GC\Underlords\SteamMsgGC.cs,SteamKit2.GC.Underlords.Internal -underlords,econ_gcmessages.proto,GC\Underlords\SteamMsgGCEcon.cs,SteamKit2.GC.Underlords.Internal -underlords,econ_shared_enums.proto,GC\Underlords\SteamMsgGCEconSharedEnums.cs,SteamKit2.GC.Underlords.Internal -underlords,gcsdk_gcmessages.proto,GC\Underlords\SteamMsgGCSDK.cs,SteamKit2.GC.Underlords.Internal -underlords,gcsystemmsgs.proto,GC\Underlords\SteamMsgGCSystem.cs,SteamKit2.GC.Underlords.Internal -underlords,network_connection.proto,GC\Underlords\NetworkConnection.cs,SteamKit2.GC.Underlords.Internal -underlords,networkbasetypes.proto,GC\Underlords\NetworkBaseTypes.cs,SteamKit2.GC.Underlords.Internal -underlords,usermessages.proto,GC\Underlords\UserMessages.cs,SteamKit2.GC.Underlords.Internal webui,common_base.proto,WebUI\SteamMsgCommonBase.cs,SteamKit2.WebUI.Internal webui,common.proto,WebUI\SteamMsgCommon.cs,SteamKit2.WebUI.Internal webui,service_accountcart.proto,WebUI\SteamMsgAccountCart.cs,SteamKit2.WebUI.Internal diff --git a/SteamKit2/SteamKit2/Base/Generated/GC/Artifact/MsgGCClient.cs b/SteamKit2/SteamKit2/Base/Generated/GC/Artifact/MsgGCClient.cs deleted file mode 100644 index 67f294b97..000000000 --- a/SteamKit2/SteamKit2/Base/Generated/GC/Artifact/MsgGCClient.cs +++ /dev/null @@ -1,5709 +0,0 @@ -// -// This file was generated by a tool; you should avoid making direct changes. -// Consider using 'partial classes' to extend these types -// Input: dcg_gcmessages_client.proto -// - -#region Designer generated code -#pragma warning disable CS0612, CS0618, CS1591, CS3021, IDE0079, IDE1006, RCS1036, RCS1057, RCS1085, RCS1192 -namespace SteamKit2.GC.Artifact.Internal -{ - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCStartMatchmaking : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(2)] - public CMsgStartFindingMatchInfo match_info { get; set; } - - [global::ProtoBuf.ProtoMember(3)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(4)] - public uint tourney_phase_id - { - get => __pbn__tourney_phase_id.GetValueOrDefault(); - set => __pbn__tourney_phase_id = value; - } - public bool ShouldSerializetourney_phase_id() => __pbn__tourney_phase_id != null; - public void Resettourney_phase_id() => __pbn__tourney_phase_id = null; - private uint? __pbn__tourney_phase_id; - - [global::ProtoBuf.ProtoMember(5)] - public uint tourney_series_id - { - get => __pbn__tourney_series_id.GetValueOrDefault(); - set => __pbn__tourney_series_id = value; - } - public bool ShouldSerializetourney_series_id() => __pbn__tourney_series_id != null; - public void Resettourney_series_id() => __pbn__tourney_series_id = null; - private uint? __pbn__tourney_series_id; - - [global::ProtoBuf.ProtoMember(6)] - public CMsgRegionPingTimesClient ping_times { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCStartMatchmakingResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResultCode.k_EResult_OK)] - public EResultCode result - { - get => __pbn__result ?? EResultCode.k_EResult_OK; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResultCode? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public uint tournament_opponent_id - { - get => __pbn__tournament_opponent_id.GetValueOrDefault(); - set => __pbn__tournament_opponent_id = value; - } - public bool ShouldSerializetournament_opponent_id() => __pbn__tournament_opponent_id != null; - public void Resettournament_opponent_id() => __pbn__tournament_opponent_id = null; - private uint? __pbn__tournament_opponent_id; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue("")] - public string debug_message - { - get => __pbn__debug_message ?? ""; - set => __pbn__debug_message = value; - } - public bool ShouldSerializedebug_message() => __pbn__debug_message != null; - public void Resetdebug_message() => __pbn__debug_message = null; - private string __pbn__debug_message; - - [global::ProtoBuf.ProtoContract()] - public enum EResultCode - { - k_EResult_OK = 0, - k_EResult_AlreadyFindingMatch = 1, - k_EResult_PartyMemberInLobby = 2, - k_EResult_InvalidClientVersion = 3, - k_EResult_MatchmakingDisabled = 4, - k_EResult_MatchmakingTooBusy = 5, - k_EResult_GauntletClosed = 6, - k_EResult_InvalidGauntlet = 7, - k_EResult_InternalError = 8, - k_EResult_InvalidDeck = 9, - k_EResult_HasUnownedCards = 10, - k_EResult_TournamentNoMatches = 11, - k_EResult_TournamentNoDeck = 13, - k_EResult_NoRegionPings = 14, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCStopMatchmaking : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCStopMatchmakingResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public bool success - { - get => __pbn__success.GetValueOrDefault(); - set => __pbn__success = value; - } - public bool ShouldSerializesuccess() => __pbn__success != null; - public void Resetsuccess() => __pbn__success = null; - private bool? __pbn__success; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToClientMatchmakingStopped : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EReason.k_EResult_Unspecified)] - public EReason reason - { - get => __pbn__reason ?? EReason.k_EResult_Unspecified; - set => __pbn__reason = value; - } - public bool ShouldSerializereason() => __pbn__reason != null; - public void Resetreason() => __pbn__reason = null; - private EReason? __pbn__reason; - - [global::ProtoBuf.ProtoContract()] - public enum EReason - { - k_EResult_Unspecified = 0, - k_EResult_VersionUpdated = 1, - k_EResult_FailedReadyUp = 2, - k_EResult_TourneySeriesClosed = 3, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCLeaveLobby : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong lobby_id - { - get => __pbn__lobby_id.GetValueOrDefault(); - set => __pbn__lobby_id = value; - } - public bool ShouldSerializelobby_id() => __pbn__lobby_id != null; - public void Resetlobby_id() => __pbn__lobby_id = null; - private ulong? __pbn__lobby_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCLeaveLobbyResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToClientDefaultValidator : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public CMsgDeckValidator validator { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientWelcomeDCG : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint currency - { - get => __pbn__currency.GetValueOrDefault(); - set => __pbn__currency = value; - } - public bool ShouldSerializecurrency() => __pbn__currency != null; - public void Resetcurrency() => __pbn__currency = null; - private uint? __pbn__currency; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List extra_messages { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCJoinChatChannel : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EChatRoomType.k_EChatRoomType_Invalid)] - public EChatRoomType room_type - { - get => __pbn__room_type ?? EChatRoomType.k_EChatRoomType_Invalid; - set => __pbn__room_type = value; - } - public bool ShouldSerializeroom_type() => __pbn__room_type != null; - public void Resetroom_type() => __pbn__room_type = null; - private EChatRoomType? __pbn__room_type; - - [global::ProtoBuf.ProtoMember(2)] - public ulong room_key - { - get => __pbn__room_key.GetValueOrDefault(); - set => __pbn__room_key = value; - } - public bool ShouldSerializeroom_key() => __pbn__room_key != null; - public void Resetroom_key() => __pbn__room_key = null; - private ulong? __pbn__room_key; - - [global::ProtoBuf.ProtoMember(3)] - public uint sub_room_index - { - get => __pbn__sub_room_index.GetValueOrDefault(); - set => __pbn__sub_room_index = value; - } - public bool ShouldSerializesub_room_index() => __pbn__sub_room_index != null; - public void Resetsub_room_index() => __pbn__sub_room_index = null; - private uint? __pbn__sub_room_index; - - [global::ProtoBuf.ProtoMember(4)] - public uint request_id - { - get => __pbn__request_id.GetValueOrDefault(); - set => __pbn__request_id = value; - } - public bool ShouldSerializerequest_id() => __pbn__request_id != null; - public void Resetrequest_id() => __pbn__request_id = null; - private uint? __pbn__request_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCJoinChatChannelResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResult.k_EResult_Success)] - public EResult result - { - get => __pbn__result ?? EResult.k_EResult_Success; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResult? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResult - { - k_EResult_Success = 0, - k_EResult_InvalidRoom = 1, - k_EResult_PermissionDenied = 2, - k_EResult_InternalError = 3, - k_EResult_RoomOffline = 4, - k_EResult_AlreadyJoined = 5, - k_EResult_RateLimited = 6, - k_EResult_TooManyRooms = 7, - k_EResult_ChatBanned = 8, - k_EResult_AccountNotLinked = 9, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToClientChatChannelJoined : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public bool success - { - get => __pbn__success.GetValueOrDefault(); - set => __pbn__success = value; - } - public bool ShouldSerializesuccess() => __pbn__success != null; - public void Resetsuccess() => __pbn__success = null; - private bool? __pbn__success; - - [global::ProtoBuf.ProtoMember(2)] - public uint request_id - { - get => __pbn__request_id.GetValueOrDefault(); - set => __pbn__request_id = value; - } - public bool ShouldSerializerequest_id() => __pbn__request_id != null; - public void Resetrequest_id() => __pbn__request_id = null; - private uint? __pbn__request_id; - - [global::ProtoBuf.ProtoMember(3, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong chat_room_id - { - get => __pbn__chat_room_id.GetValueOrDefault(); - set => __pbn__chat_room_id = value; - } - public bool ShouldSerializechat_room_id() => __pbn__chat_room_id != null; - public void Resetchat_room_id() => __pbn__chat_room_id = null; - private ulong? __pbn__chat_room_id; - - [global::ProtoBuf.ProtoMember(4)] - public uint sub_room_index - { - get => __pbn__sub_room_index.GetValueOrDefault(); - set => __pbn__sub_room_index = value; - } - public bool ShouldSerializesub_room_index() => __pbn__sub_room_index != null; - public void Resetsub_room_index() => __pbn__sub_room_index = null; - private uint? __pbn__sub_room_index; - - [global::ProtoBuf.ProtoMember(5)] - public bool aliased_user_ids - { - get => __pbn__aliased_user_ids.GetValueOrDefault(); - set => __pbn__aliased_user_ids = value; - } - public bool ShouldSerializealiased_user_ids() => __pbn__aliased_user_ids != null; - public void Resetaliased_user_ids() => __pbn__aliased_user_ids = null; - private bool? __pbn__aliased_user_ids; - - [global::ProtoBuf.ProtoMember(6)] - public uint local_aliased_id - { - get => __pbn__local_aliased_id.GetValueOrDefault(); - set => __pbn__local_aliased_id = value; - } - public bool ShouldSerializelocal_aliased_id() => __pbn__local_aliased_id != null; - public void Resetlocal_aliased_id() => __pbn__local_aliased_id = null; - private uint? __pbn__local_aliased_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCSendChatMessage : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong chat_room_id - { - get => __pbn__chat_room_id.GetValueOrDefault(); - set => __pbn__chat_room_id = value; - } - public bool ShouldSerializechat_room_id() => __pbn__chat_room_id != null; - public void Resetchat_room_id() => __pbn__chat_room_id = null; - private ulong? __pbn__chat_room_id; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string chat_msg - { - get => __pbn__chat_msg ?? ""; - set => __pbn__chat_msg = value; - } - public bool ShouldSerializechat_msg() => __pbn__chat_msg != null; - public void Resetchat_msg() => __pbn__chat_msg = null; - private string __pbn__chat_msg; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCSendChatMessageRoll : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong chat_room_id - { - get => __pbn__chat_room_id.GetValueOrDefault(); - set => __pbn__chat_room_id = value; - } - public bool ShouldSerializechat_room_id() => __pbn__chat_room_id != null; - public void Resetchat_room_id() => __pbn__chat_room_id = null; - private ulong? __pbn__chat_room_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint roll_min - { - get => __pbn__roll_min.GetValueOrDefault(); - set => __pbn__roll_min = value; - } - public bool ShouldSerializeroll_min() => __pbn__roll_min != null; - public void Resetroll_min() => __pbn__roll_min = null; - private uint? __pbn__roll_min; - - [global::ProtoBuf.ProtoMember(3)] - public uint roll_max - { - get => __pbn__roll_max.GetValueOrDefault(); - set => __pbn__roll_max = value; - } - public bool ShouldSerializeroll_max() => __pbn__roll_max != null; - public void Resetroll_max() => __pbn__roll_max = null; - private uint? __pbn__roll_max; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CChatMessageAdditionalData_DiceRoll : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint roll_value - { - get => __pbn__roll_value.GetValueOrDefault(); - set => __pbn__roll_value = value; - } - public bool ShouldSerializeroll_value() => __pbn__roll_value != null; - public void Resetroll_value() => __pbn__roll_value = null; - private uint? __pbn__roll_value; - - [global::ProtoBuf.ProtoMember(2)] - public uint roll_min - { - get => __pbn__roll_min.GetValueOrDefault(); - set => __pbn__roll_min = value; - } - public bool ShouldSerializeroll_min() => __pbn__roll_min != null; - public void Resetroll_min() => __pbn__roll_min = null; - private uint? __pbn__roll_min; - - [global::ProtoBuf.ProtoMember(3)] - public uint roll_max - { - get => __pbn__roll_max.GetValueOrDefault(); - set => __pbn__roll_max = value; - } - public bool ShouldSerializeroll_max() => __pbn__roll_max != null; - public void Resetroll_max() => __pbn__roll_max = null; - private uint? __pbn__roll_max; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToClientChatMessage : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong chat_room_id - { - get => __pbn__chat_room_id.GetValueOrDefault(); - set => __pbn__chat_room_id = value; - } - public bool ShouldSerializechat_room_id() => __pbn__chat_room_id != null; - public void Resetchat_room_id() => __pbn__chat_room_id = null; - private ulong? __pbn__chat_room_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint user_id - { - get => __pbn__user_id.GetValueOrDefault(); - set => __pbn__user_id = value; - } - public bool ShouldSerializeuser_id() => __pbn__user_id != null; - public void Resetuser_id() => __pbn__user_id = null; - private uint? __pbn__user_id; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue("")] - public string chat_msg - { - get => __pbn__chat_msg ?? ""; - set => __pbn__chat_msg = value; - } - public bool ShouldSerializechat_msg() => __pbn__chat_msg != null; - public void Resetchat_msg() => __pbn__chat_msg = null; - private string __pbn__chat_msg; - - [global::ProtoBuf.ProtoMember(4)] - [global::System.ComponentModel.DefaultValue("")] - public string persona_name - { - get => __pbn__persona_name ?? ""; - set => __pbn__persona_name = value; - } - public bool ShouldSerializepersona_name() => __pbn__persona_name != null; - public void Resetpersona_name() => __pbn__persona_name = null; - private string __pbn__persona_name; - - [global::ProtoBuf.ProtoMember(5)] - public CExtraMsgBlock additional_data { get; set; } - - [global::ProtoBuf.ProtoMember(6)] - public uint time_stamp - { - get => __pbn__time_stamp.GetValueOrDefault(); - set => __pbn__time_stamp = value; - } - public bool ShouldSerializetime_stamp() => __pbn__time_stamp != null; - public void Resettime_stamp() => __pbn__time_stamp = null; - private uint? __pbn__time_stamp; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToClientUserJoinedChatChannel : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong chat_room_id - { - get => __pbn__chat_room_id.GetValueOrDefault(); - set => __pbn__chat_room_id = value; - } - public bool ShouldSerializechat_room_id() => __pbn__chat_room_id != null; - public void Resetchat_room_id() => __pbn__chat_room_id = null; - private ulong? __pbn__chat_room_id; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List joined_user_ids { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3)] - public global::System.Collections.Generic.List joined_persona_names { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(4)] - public global::System.Collections.Generic.List left_user_ids { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCLeaveChatChannel : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong chat_room_id - { - get => __pbn__chat_room_id.GetValueOrDefault(); - set => __pbn__chat_room_id = value; - } - public bool ShouldSerializechat_room_id() => __pbn__chat_room_id != null; - public void Resetchat_room_id() => __pbn__chat_room_id = null; - private ulong? __pbn__chat_room_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCLeaveChatChannelByKey : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EChatRoomType.k_EChatRoomType_Invalid)] - public EChatRoomType room_type - { - get => __pbn__room_type ?? EChatRoomType.k_EChatRoomType_Invalid; - set => __pbn__room_type = value; - } - public bool ShouldSerializeroom_type() => __pbn__room_type != null; - public void Resetroom_type() => __pbn__room_type = null; - private EChatRoomType? __pbn__room_type; - - [global::ProtoBuf.ProtoMember(2)] - public ulong room_key - { - get => __pbn__room_key.GetValueOrDefault(); - set => __pbn__room_key = value; - } - public bool ShouldSerializeroom_key() => __pbn__room_key != null; - public void Resetroom_key() => __pbn__room_key = null; - private ulong? __pbn__room_key; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCIsInMatchmaking : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCIsInMatchmakingResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public bool in_matchmaking - { - get => __pbn__in_matchmaking.GetValueOrDefault(); - set => __pbn__in_matchmaking = value; - } - public bool ShouldSerializein_matchmaking() => __pbn__in_matchmaking != null; - public void Resetin_matchmaking() => __pbn__in_matchmaking = null; - private bool? __pbn__in_matchmaking; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCOpenPackItem : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong item_id - { - get => __pbn__item_id.GetValueOrDefault(); - set => __pbn__item_id = value; - } - public bool ShouldSerializeitem_id() => __pbn__item_id != null; - public void Resetitem_id() => __pbn__item_id = null; - private ulong? __pbn__item_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCOpenPackItemResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eSuccess)] - public EResponse response - { - get => __pbn__response ?? EResponse.k_eSuccess; - set => __pbn__response = value; - } - public bool ShouldSerializeresponse() => __pbn__response != null; - public void Resetresponse() => __pbn__response = null; - private EResponse? __pbn__response; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List items { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class OpenedItem : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint def_index - { - get => __pbn__def_index.GetValueOrDefault(); - set => __pbn__def_index = value; - } - public bool ShouldSerializedef_index() => __pbn__def_index != null; - public void Resetdef_index() => __pbn__def_index = null; - private uint? __pbn__def_index; - - [global::ProtoBuf.ProtoMember(2)] - public ulong item_id - { - get => __pbn__item_id.GetValueOrDefault(); - set => __pbn__item_id = value; - } - public bool ShouldSerializeitem_id() => __pbn__item_id != null; - public void Resetitem_id() => __pbn__item_id = null; - private ulong? __pbn__item_id; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue(CMsgClientToGCOpenPackItemResponse.ESlotType.k_eSlot_Unspecified)] - public CMsgClientToGCOpenPackItemResponse.ESlotType slot_type - { - get => __pbn__slot_type ?? CMsgClientToGCOpenPackItemResponse.ESlotType.k_eSlot_Unspecified; - set => __pbn__slot_type = value; - } - public bool ShouldSerializeslot_type() => __pbn__slot_type != null; - public void Resetslot_type() => __pbn__slot_type = null; - private CMsgClientToGCOpenPackItemResponse.ESlotType? __pbn__slot_type; - - } - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eSuccess = 1, - k_eTooManyRequests = 2, - k_eInternalError = 3, - k_eInvalidItemID = 4, - k_eDisabled = 5, - k_eRegionLocked = 6, - } - - [global::ProtoBuf.ProtoContract()] - public enum ESlotType - { - k_eSlot_Unspecified = 0, - k_eSlot_Common = 1, - k_eSlot_Uncommon = 2, - k_eSlot_Rare = 3, - k_eSlot_UncommonFromCommon = 4, - k_eSlot_RareFromCommon = 5, - k_eSlot_RareFromUncommon = 6, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCSpectateUser : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint spectate_account_id - { - get => __pbn__spectate_account_id.GetValueOrDefault(); - set => __pbn__spectate_account_id = value; - } - public bool ShouldSerializespectate_account_id() => __pbn__spectate_account_id != null; - public void Resetspectate_account_id() => __pbn__spectate_account_id = null; - private uint? __pbn__spectate_account_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCSpectateUserResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResult.eResult_OK)] - public EResult result - { - get => __pbn__result ?? EResult.eResult_OK; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResult? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public ulong match_id - { - get => __pbn__match_id.GetValueOrDefault(); - set => __pbn__match_id = value; - } - public bool ShouldSerializematch_id() => __pbn__match_id != null; - public void Resetmatch_id() => __pbn__match_id = null; - private ulong? __pbn__match_id; - - [global::ProtoBuf.ProtoMember(3, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong server_steam_id - { - get => __pbn__server_steam_id.GetValueOrDefault(); - set => __pbn__server_steam_id = value; - } - public bool ShouldSerializeserver_steam_id() => __pbn__server_steam_id != null; - public void Resetserver_steam_id() => __pbn__server_steam_id = null; - private ulong? __pbn__server_steam_id; - - [global::ProtoBuf.ProtoMember(4)] - public byte[] sdr_key - { - get => __pbn__sdr_key; - set => __pbn__sdr_key = value; - } - public bool ShouldSerializesdr_key() => __pbn__sdr_key != null; - public void Resetsdr_key() => __pbn__sdr_key = null; - private byte[] __pbn__sdr_key; - - [global::ProtoBuf.ProtoMember(5)] - public uint udp_connect_ip - { - get => __pbn__udp_connect_ip.GetValueOrDefault(); - set => __pbn__udp_connect_ip = value; - } - public bool ShouldSerializeudp_connect_ip() => __pbn__udp_connect_ip != null; - public void Resetudp_connect_ip() => __pbn__udp_connect_ip = null; - private uint? __pbn__udp_connect_ip; - - [global::ProtoBuf.ProtoMember(6)] - public uint udp_connect_port - { - get => __pbn__udp_connect_port.GetValueOrDefault(); - set => __pbn__udp_connect_port = value; - } - public bool ShouldSerializeudp_connect_port() => __pbn__udp_connect_port != null; - public void Resetudp_connect_port() => __pbn__udp_connect_port = null; - private uint? __pbn__udp_connect_port; - - [global::ProtoBuf.ProtoContract()] - public enum EResult - { - eResult_OK = 1, - eResult_NotInGame = 2, - eResult_InternalError = 3, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCGetMatchHistory : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCGetMatchHistoryResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List match_details { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class MatchDetails : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint player1 - { - get => __pbn__player1.GetValueOrDefault(); - set => __pbn__player1 = value; - } - public bool ShouldSerializeplayer1() => __pbn__player1 != null; - public void Resetplayer1() => __pbn__player1 = null; - private uint? __pbn__player1; - - [global::ProtoBuf.ProtoMember(2)] - public uint player2 - { - get => __pbn__player2.GetValueOrDefault(); - set => __pbn__player2 = value; - } - public bool ShouldSerializeplayer2() => __pbn__player2 != null; - public void Resetplayer2() => __pbn__player2 = null; - private uint? __pbn__player2; - - [global::ProtoBuf.ProtoMember(3)] - public uint start_time - { - get => __pbn__start_time.GetValueOrDefault(); - set => __pbn__start_time = value; - } - public bool ShouldSerializestart_time() => __pbn__start_time != null; - public void Resetstart_time() => __pbn__start_time = null; - private uint? __pbn__start_time; - - [global::ProtoBuf.ProtoMember(4)] - public uint duration - { - get => __pbn__duration.GetValueOrDefault(); - set => __pbn__duration = value; - } - public bool ShouldSerializeduration() => __pbn__duration != null; - public void Resetduration() => __pbn__duration = null; - private uint? __pbn__duration; - - [global::ProtoBuf.ProtoMember(5)] - public uint turns - { - get => __pbn__turns.GetValueOrDefault(); - set => __pbn__turns = value; - } - public bool ShouldSerializeturns() => __pbn__turns != null; - public void Resetturns() => __pbn__turns = null; - private uint? __pbn__turns; - - [global::ProtoBuf.ProtoMember(6)] - public ulong match_id - { - get => __pbn__match_id.GetValueOrDefault(); - set => __pbn__match_id = value; - } - public bool ShouldSerializematch_id() => __pbn__match_id != null; - public void Resetmatch_id() => __pbn__match_id = null; - private ulong? __pbn__match_id; - - [global::ProtoBuf.ProtoMember(7)] - public uint outcome - { - get => __pbn__outcome.GetValueOrDefault(); - set => __pbn__outcome = value; - } - public bool ShouldSerializeoutcome() => __pbn__outcome != null; - public void Resetoutcome() => __pbn__outcome = null; - private uint? __pbn__outcome; - - [global::ProtoBuf.ProtoMember(8)] - [global::System.ComponentModel.DefaultValue(EDCGMatchMode.k_EDCGMatchMode_Unranked)] - public EDCGMatchMode match_mode - { - get => __pbn__match_mode ?? EDCGMatchMode.k_EDCGMatchMode_Unranked; - set => __pbn__match_mode = value; - } - public bool ShouldSerializematch_mode() => __pbn__match_mode != null; - public void Resetmatch_mode() => __pbn__match_mode = null; - private EDCGMatchMode? __pbn__match_mode; - - [global::ProtoBuf.ProtoMember(9)] - public global::System.Collections.Generic.List tower_health { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(10)] - public global::System.Collections.Generic.List heroes { get; } = new global::System.Collections.Generic.List(); - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCGetMatchDetails : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong match_id - { - get => __pbn__match_id.GetValueOrDefault(); - set => __pbn__match_id = value; - } - public bool ShouldSerializematch_id() => __pbn__match_id != null; - public void Resetmatch_id() => __pbn__match_id = null; - private ulong? __pbn__match_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCGetMatchDetailsResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint player1 - { - get => __pbn__player1.GetValueOrDefault(); - set => __pbn__player1 = value; - } - public bool ShouldSerializeplayer1() => __pbn__player1 != null; - public void Resetplayer1() => __pbn__player1 = null; - private uint? __pbn__player1; - - [global::ProtoBuf.ProtoMember(2)] - public uint player2 - { - get => __pbn__player2.GetValueOrDefault(); - set => __pbn__player2 = value; - } - public bool ShouldSerializeplayer2() => __pbn__player2 != null; - public void Resetplayer2() => __pbn__player2 = null; - private uint? __pbn__player2; - - [global::ProtoBuf.ProtoMember(3)] - public uint start_time - { - get => __pbn__start_time.GetValueOrDefault(); - set => __pbn__start_time = value; - } - public bool ShouldSerializestart_time() => __pbn__start_time != null; - public void Resetstart_time() => __pbn__start_time = null; - private uint? __pbn__start_time; - - [global::ProtoBuf.ProtoMember(4)] - public uint duration - { - get => __pbn__duration.GetValueOrDefault(); - set => __pbn__duration = value; - } - public bool ShouldSerializeduration() => __pbn__duration != null; - public void Resetduration() => __pbn__duration = null; - private uint? __pbn__duration; - - [global::ProtoBuf.ProtoMember(5)] - public uint turns - { - get => __pbn__turns.GetValueOrDefault(); - set => __pbn__turns = value; - } - public bool ShouldSerializeturns() => __pbn__turns != null; - public void Resetturns() => __pbn__turns = null; - private uint? __pbn__turns; - - [global::ProtoBuf.ProtoMember(6)] - public ulong match_id - { - get => __pbn__match_id.GetValueOrDefault(); - set => __pbn__match_id = value; - } - public bool ShouldSerializematch_id() => __pbn__match_id != null; - public void Resetmatch_id() => __pbn__match_id = null; - private ulong? __pbn__match_id; - - [global::ProtoBuf.ProtoMember(7)] - public uint outcome - { - get => __pbn__outcome.GetValueOrDefault(); - set => __pbn__outcome = value; - } - public bool ShouldSerializeoutcome() => __pbn__outcome != null; - public void Resetoutcome() => __pbn__outcome = null; - private uint? __pbn__outcome; - - [global::ProtoBuf.ProtoMember(8)] - [global::System.ComponentModel.DefaultValue(EDCGMatchMode.k_EDCGMatchMode_Unranked)] - public EDCGMatchMode match_mode - { - get => __pbn__match_mode ?? EDCGMatchMode.k_EDCGMatchMode_Unranked; - set => __pbn__match_mode = value; - } - public bool ShouldSerializematch_mode() => __pbn__match_mode != null; - public void Resetmatch_mode() => __pbn__match_mode = null; - private EDCGMatchMode? __pbn__match_mode; - - [global::ProtoBuf.ProtoMember(9)] - public global::System.Collections.Generic.List tower_health1 { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(10)] - public global::System.Collections.Generic.List tower_health2 { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(11)] - public global::System.Collections.Generic.List heroes1 { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(12)] - public global::System.Collections.Generic.List heroes2 { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(13)] - [global::System.ComponentModel.DefaultValue(EResult.eResult_Success)] - public EResult result - { - get => __pbn__result ?? EResult.eResult_Success; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResult? __pbn__result; - - [global::ProtoBuf.ProtoMember(14)] - public uint cluster_id - { - get => __pbn__cluster_id.GetValueOrDefault(); - set => __pbn__cluster_id = value; - } - public bool ShouldSerializecluster_id() => __pbn__cluster_id != null; - public void Resetcluster_id() => __pbn__cluster_id = null; - private uint? __pbn__cluster_id; - - [global::ProtoBuf.ProtoMember(15)] - public uint replay_salt - { - get => __pbn__replay_salt.GetValueOrDefault(); - set => __pbn__replay_salt = value; - } - public bool ShouldSerializereplay_salt() => __pbn__replay_salt != null; - public void Resetreplay_salt() => __pbn__replay_salt = null; - private uint? __pbn__replay_salt; - - [global::ProtoBuf.ProtoContract()] - public enum EResult - { - eResult_Success = 0, - eResult_InvalidMatch = 1, - eResult_NotAuthorized = 2, - eResult_InternalError = 3, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCGetAIVsAIMatchConfig : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCGetAIVsAIMatchConfigResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public bool success - { - get => __pbn__success.GetValueOrDefault(); - set => __pbn__success = value; - } - public bool ShouldSerializesuccess() => __pbn__success != null; - public void Resetsuccess() => __pbn__success = null; - private bool? __pbn__success; - - [global::ProtoBuf.ProtoMember(2)] - public uint ai_match_id - { - get => __pbn__ai_match_id.GetValueOrDefault(); - set => __pbn__ai_match_id = value; - } - public bool ShouldSerializeai_match_id() => __pbn__ai_match_id != null; - public void Resetai_match_id() => __pbn__ai_match_id = null; - private uint? __pbn__ai_match_id; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue("")] - public string ai_0_deck_code - { - get => __pbn__ai_0_deck_code ?? ""; - set => __pbn__ai_0_deck_code = value; - } - public bool ShouldSerializeai_0_deck_code() => __pbn__ai_0_deck_code != null; - public void Resetai_0_deck_code() => __pbn__ai_0_deck_code = null; - private string __pbn__ai_0_deck_code; - - [global::ProtoBuf.ProtoMember(4)] - [global::System.ComponentModel.DefaultValue("")] - public string ai_1_deck_code - { - get => __pbn__ai_1_deck_code ?? ""; - set => __pbn__ai_1_deck_code = value; - } - public bool ShouldSerializeai_1_deck_code() => __pbn__ai_1_deck_code != null; - public void Resetai_1_deck_code() => __pbn__ai_1_deck_code = null; - private string __pbn__ai_1_deck_code; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCGetAIVsAIMatchComplete : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint ai_match_id - { - get => __pbn__ai_match_id.GetValueOrDefault(); - set => __pbn__ai_match_id = value; - } - public bool ShouldSerializeai_match_id() => __pbn__ai_match_id != null; - public void Resetai_match_id() => __pbn__ai_match_id = null; - private uint? __pbn__ai_match_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint winning_player - { - get => __pbn__winning_player.GetValueOrDefault(); - set => __pbn__winning_player = value; - } - public bool ShouldSerializewinning_player() => __pbn__winning_player != null; - public void Resetwinning_player() => __pbn__winning_player = null; - private uint? __pbn__winning_player; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToClientGlobalPhantomLeagues : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(3)] - public byte[] global_deck_bytes - { - get => __pbn__global_deck_bytes; - set => __pbn__global_deck_bytes = value; - } - public bool ShouldSerializeglobal_deck_bytes() => __pbn__global_deck_bytes != null; - public void Resetglobal_deck_bytes() => __pbn__global_deck_bytes = null; - private byte[] __pbn__global_deck_bytes; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCJoinGauntlet : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint gauntlet_id - { - get => __pbn__gauntlet_id.GetValueOrDefault(); - set => __pbn__gauntlet_id = value; - } - public bool ShouldSerializegauntlet_id() => __pbn__gauntlet_id != null; - public void Resetgauntlet_id() => __pbn__gauntlet_id = null; - private uint? __pbn__gauntlet_id; - - [global::ProtoBuf.ProtoMember(2)] - public byte[] deck_bytes - { - get => __pbn__deck_bytes; - set => __pbn__deck_bytes = value; - } - public bool ShouldSerializedeck_bytes() => __pbn__deck_bytes != null; - public void Resetdeck_bytes() => __pbn__deck_bytes = null; - private byte[] __pbn__deck_bytes; - - [global::ProtoBuf.ProtoMember(3)] - public uint entry_id - { - get => __pbn__entry_id.GetValueOrDefault(); - set => __pbn__entry_id = value; - } - public bool ShouldSerializeentry_id() => __pbn__entry_id != null; - public void Resetentry_id() => __pbn__entry_id = null; - private uint? __pbn__entry_id; - - [global::ProtoBuf.ProtoMember(4)] - public global::System.Collections.Generic.List entry_costs { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(5)] - public bool select_random_deck - { - get => __pbn__select_random_deck.GetValueOrDefault(); - set => __pbn__select_random_deck = value; - } - public bool ShouldSerializeselect_random_deck() => __pbn__select_random_deck != null; - public void Resetselect_random_deck() => __pbn__select_random_deck = null; - private bool? __pbn__select_random_deck; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCJoinGauntletResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public uint available_after - { - get => __pbn__available_after.GetValueOrDefault(); - set => __pbn__available_after = value; - } - public bool ShouldSerializeavailable_after() => __pbn__available_after != null; - public void Resetavailable_after() => __pbn__available_after = null; - private uint? __pbn__available_after; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eInvalidGauntlet = 2, - k_eTooBusy = 3, - k_eAlreadyInGauntlet = 4, - k_eInvalidDeck = 5, - k_eMissingItem = 6, - k_eInvalidEntryCost = 7, - k_eDisabled = 8, - k_eHasUnownedCards = 9, - k_eRateLimited = 10, - k_eRandomDeckNotAllowed = 11, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCAbandonGauntlet : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint gauntlet_id - { - get => __pbn__gauntlet_id.GetValueOrDefault(); - set => __pbn__gauntlet_id = value; - } - public bool ShouldSerializegauntlet_id() => __pbn__gauntlet_id != null; - public void Resetgauntlet_id() => __pbn__gauntlet_id = null; - private uint? __pbn__gauntlet_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCAbandonGauntletResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List reward_items { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class RewardItem : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint def_index - { - get => __pbn__def_index.GetValueOrDefault(); - set => __pbn__def_index = value; - } - public bool ShouldSerializedef_index() => __pbn__def_index != null; - public void Resetdef_index() => __pbn__def_index = null; - private uint? __pbn__def_index; - - } - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eInvalidGauntlet = 2, - k_eTooBusy = 3, - k_eDisabled = 4, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCAIGauntletResult : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint gauntlet_id - { - get => __pbn__gauntlet_id.GetValueOrDefault(); - set => __pbn__gauntlet_id = value; - } - public bool ShouldSerializegauntlet_id() => __pbn__gauntlet_id != null; - public void Resetgauntlet_id() => __pbn__gauntlet_id = null; - private uint? __pbn__gauntlet_id; - - [global::ProtoBuf.ProtoMember(2)] - public bool is_win - { - get => __pbn__is_win.GetValueOrDefault(); - set => __pbn__is_win = value; - } - public bool ShouldSerializeis_win() => __pbn__is_win != null; - public void Resetis_win() => __pbn__is_win = null; - private bool? __pbn__is_win; - - [global::ProtoBuf.ProtoMember(3, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong secret_key - { - get => __pbn__secret_key.GetValueOrDefault(); - set => __pbn__secret_key = value; - } - public bool ShouldSerializesecret_key() => __pbn__secret_key != null; - public void Resetsecret_key() => __pbn__secret_key = null; - private ulong? __pbn__secret_key; - - [global::ProtoBuf.ProtoMember(4)] - public uint expected_wins - { - get => __pbn__expected_wins.GetValueOrDefault(); - set => __pbn__expected_wins = value; - } - public bool ShouldSerializeexpected_wins() => __pbn__expected_wins != null; - public void Resetexpected_wins() => __pbn__expected_wins = null; - private uint? __pbn__expected_wins; - - [global::ProtoBuf.ProtoMember(5)] - public uint expected_losses - { - get => __pbn__expected_losses.GetValueOrDefault(); - set => __pbn__expected_losses = value; - } - public bool ShouldSerializeexpected_losses() => __pbn__expected_losses != null; - public void Resetexpected_losses() => __pbn__expected_losses = null; - private uint? __pbn__expected_losses; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCAIGauntletResultResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eFailed = 2, - k_eDisabled = 3, - k_eBusy = 4, - k_eInvalidKey = 5, - k_eMismatchedGames = 6, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToClientAvailableGauntlets : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List available_gauntlets { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCGetGauntletMatches : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong gauntlet_instance_id - { - get => __pbn__gauntlet_instance_id.GetValueOrDefault(); - set => __pbn__gauntlet_instance_id = value; - } - public bool ShouldSerializegauntlet_instance_id() => __pbn__gauntlet_instance_id != null; - public void Resetgauntlet_instance_id() => __pbn__gauntlet_instance_id = null; - private ulong? __pbn__gauntlet_instance_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCGetGauntletMatchesResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List matches { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class Match : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong match_id - { - get => __pbn__match_id.GetValueOrDefault(); - set => __pbn__match_id = value; - } - public bool ShouldSerializematch_id() => __pbn__match_id != null; - public void Resetmatch_id() => __pbn__match_id = null; - private ulong? __pbn__match_id; - - [global::ProtoBuf.ProtoMember(2)] - public bool win - { - get => __pbn__win.GetValueOrDefault(); - set => __pbn__win = value; - } - public bool ShouldSerializewin() => __pbn__win != null; - public void Resetwin() => __pbn__win = null; - private bool? __pbn__win; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCRegisterGauntletDeck : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint gauntlet_id - { - get => __pbn__gauntlet_id.GetValueOrDefault(); - set => __pbn__gauntlet_id = value; - } - public bool ShouldSerializegauntlet_id() => __pbn__gauntlet_id != null; - public void Resetgauntlet_id() => __pbn__gauntlet_id = null; - private uint? __pbn__gauntlet_id; - - [global::ProtoBuf.ProtoMember(2)] - public byte[] deck_bytes - { - get => __pbn__deck_bytes; - set => __pbn__deck_bytes = value; - } - public bool ShouldSerializedeck_bytes() => __pbn__deck_bytes != null; - public void Resetdeck_bytes() => __pbn__deck_bytes = null; - private byte[] __pbn__deck_bytes; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCRegisterGauntletDeckResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eInvalidGauntlet = 2, - k_eDeckAlreadyRegistered = 3, - k_eInvalidDeck = 4, - k_eHasUnownedCards = 5, - k_eDisabled = 6, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCLimitedGrant : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong limited_instance_id - { - get => __pbn__limited_instance_id.GetValueOrDefault(); - set => __pbn__limited_instance_id = value; - } - public bool ShouldSerializelimited_instance_id() => __pbn__limited_instance_id != null; - public void Resetlimited_instance_id() => __pbn__limited_instance_id = null; - private ulong? __pbn__limited_instance_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint grant_id - { - get => __pbn__grant_id.GetValueOrDefault(); - set => __pbn__grant_id = value; - } - public bool ShouldSerializegrant_id() => __pbn__grant_id != null; - public void Resetgrant_id() => __pbn__grant_id = null; - private uint? __pbn__grant_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCLimitedGrantResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public uint choice_count - { - get => __pbn__choice_count.GetValueOrDefault(); - set => __pbn__choice_count = value; - } - public bool ShouldSerializechoice_count() => __pbn__choice_count != null; - public void Resetchoice_count() => __pbn__choice_count = null; - private uint? __pbn__choice_count; - - [global::ProtoBuf.ProtoMember(3)] - public global::System.Collections.Generic.List def_index { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eInvalidFormat = 2, - k_eAlreadyGranted = 3, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCLimitedGrantChoice : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong limited_instance_id - { - get => __pbn__limited_instance_id.GetValueOrDefault(); - set => __pbn__limited_instance_id = value; - } - public bool ShouldSerializelimited_instance_id() => __pbn__limited_instance_id != null; - public void Resetlimited_instance_id() => __pbn__limited_instance_id = null; - private ulong? __pbn__limited_instance_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint grant_id - { - get => __pbn__grant_id.GetValueOrDefault(); - set => __pbn__grant_id = value; - } - public bool ShouldSerializegrant_id() => __pbn__grant_id != null; - public void Resetgrant_id() => __pbn__grant_id = null; - private uint? __pbn__grant_id; - - [global::ProtoBuf.ProtoMember(3)] - public global::System.Collections.Generic.List choice_def_index { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCLimitedGrantChoiceResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eInvalidFormat = 2, - k_eInvalidChoices = 3, - k_eAlreadyGranted = 4, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCLimitedGetFormat : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint limited_format - { - get => __pbn__limited_format.GetValueOrDefault(); - set => __pbn__limited_format = value; - } - public bool ShouldSerializelimited_format() => __pbn__limited_format != null; - public void Resetlimited_format() => __pbn__limited_format = null; - private uint? __pbn__limited_format; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCLimitedGetFormatResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public bool success - { - get => __pbn__success.GetValueOrDefault(); - set => __pbn__success = value; - } - public bool ShouldSerializesuccess() => __pbn__success != null; - public void Resetsuccess() => __pbn__success = null; - private bool? __pbn__success; - - [global::ProtoBuf.ProtoMember(2)] - public CMsgLimitedFormat format_config { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyCreate : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint client_version - { - get => __pbn__client_version.GetValueOrDefault(); - set => __pbn__client_version = value; - } - public bool ShouldSerializeclient_version() => __pbn__client_version != null; - public void Resetclient_version() => __pbn__client_version = null; - private uint? __pbn__client_version; - - [global::ProtoBuf.ProtoMember(2)] - public CMsgRegionPingTimesClient ping_times { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyCreateResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong private_lobby_id - { - get => __pbn__private_lobby_id.GetValueOrDefault(); - set => __pbn__private_lobby_id = value; - } - public bool ShouldSerializeprivate_lobby_id() => __pbn__private_lobby_id != null; - public void Resetprivate_lobby_id() => __pbn__private_lobby_id = null; - private ulong? __pbn__private_lobby_id; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eAlreadyInLobby = 2, - k_eDisabled = 3, - k_eInvalidVersion = 4, - k_eNoRegionPings = 5, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyLeave : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong private_lobby_id - { - get => __pbn__private_lobby_id.GetValueOrDefault(); - set => __pbn__private_lobby_id = value; - } - public bool ShouldSerializeprivate_lobby_id() => __pbn__private_lobby_id != null; - public void Resetprivate_lobby_id() => __pbn__private_lobby_id = null; - private ulong? __pbn__private_lobby_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyLeaveResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eNotInLobby = 2, - k_eInMatchMaking = 3, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyJoin : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong private_lobby_id - { - get => __pbn__private_lobby_id.GetValueOrDefault(); - set => __pbn__private_lobby_id = value; - } - public bool ShouldSerializeprivate_lobby_id() => __pbn__private_lobby_id != null; - public void Resetprivate_lobby_id() => __pbn__private_lobby_id = null; - private ulong? __pbn__private_lobby_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint client_version - { - get => __pbn__client_version.GetValueOrDefault(); - set => __pbn__client_version = value; - } - public bool ShouldSerializeclient_version() => __pbn__client_version != null; - public void Resetclient_version() => __pbn__client_version = null; - private uint? __pbn__client_version; - - [global::ProtoBuf.ProtoMember(3)] - public CMsgRegionPingTimesClient ping_times { get; set; } - - [global::ProtoBuf.ProtoMember(4, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong lobby_salt - { - get => __pbn__lobby_salt.GetValueOrDefault(); - set => __pbn__lobby_salt = value; - } - public bool ShouldSerializelobby_salt() => __pbn__lobby_salt != null; - public void Resetlobby_salt() => __pbn__lobby_salt = null; - private ulong? __pbn__lobby_salt; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyJoinResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eAlreadyInLobby = 2, - k_eDisabled = 3, - k_eInvalidLobbyID = 4, - k_eInvalidPermissions = 5, - k_eInvalidVersion = 6, - k_eNoRegionPings = 7, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyAction : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong private_lobby_id - { - get => __pbn__private_lobby_id.GetValueOrDefault(); - set => __pbn__private_lobby_id = value; - } - public bool ShouldSerializeprivate_lobby_id() => __pbn__private_lobby_id != null; - public void Resetprivate_lobby_id() => __pbn__private_lobby_id = null; - private ulong? __pbn__private_lobby_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint target_account_id - { - get => __pbn__target_account_id.GetValueOrDefault(); - set => __pbn__target_account_id = value; - } - public bool ShouldSerializetarget_account_id() => __pbn__target_account_id != null; - public void Resettarget_account_id() => __pbn__target_account_id = null; - private uint? __pbn__target_account_id; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue(EAction.k_eSetTeam)] - public EAction action_id - { - get => __pbn__action_id ?? EAction.k_eSetTeam; - set => __pbn__action_id = value; - } - public bool ShouldSerializeaction_id() => __pbn__action_id != null; - public void Resetaction_id() => __pbn__action_id = null; - private EAction? __pbn__action_id; - - [global::ProtoBuf.ProtoMember(4)] - public ulong uint_value - { - get => __pbn__uint_value.GetValueOrDefault(); - set => __pbn__uint_value = value; - } - public bool ShouldSerializeuint_value() => __pbn__uint_value != null; - public void Resetuint_value() => __pbn__uint_value = null; - private ulong? __pbn__uint_value; - - [global::ProtoBuf.ProtoMember(5)] - public byte[] bytes_value - { - get => __pbn__bytes_value; - set => __pbn__bytes_value = value; - } - public bool ShouldSerializebytes_value() => __pbn__bytes_value != null; - public void Resetbytes_value() => __pbn__bytes_value = null; - private byte[] __pbn__bytes_value; - - [global::ProtoBuf.ProtoMember(6)] - public bool bool_value - { - get => __pbn__bool_value.GetValueOrDefault(); - set => __pbn__bool_value = value; - } - public bool ShouldSerializebool_value() => __pbn__bool_value != null; - public void Resetbool_value() => __pbn__bool_value = null; - private bool? __pbn__bool_value; - - [global::ProtoBuf.ProtoMember(7, DataFormat = global::ProtoBuf.DataFormat.ZigZag)] - public long sint_value - { - get => __pbn__sint_value.GetValueOrDefault(); - set => __pbn__sint_value = value; - } - public bool ShouldSerializesint_value() => __pbn__sint_value != null; - public void Resetsint_value() => __pbn__sint_value = null; - private long? __pbn__sint_value; - - [global::ProtoBuf.ProtoMember(8)] - [global::System.ComponentModel.DefaultValue("")] - public string str_value - { - get => __pbn__str_value ?? ""; - set => __pbn__str_value = value; - } - public bool ShouldSerializestr_value() => __pbn__str_value != null; - public void Resetstr_value() => __pbn__str_value = null; - private string __pbn__str_value; - - [global::ProtoBuf.ProtoContract()] - public enum EAction - { - k_eSetTeam = 0, - k_eSetDeck = 1, - k_eKickUser = 3, - k_eCancelInvite = 4, - k_eCancelFindMatch = 5, - k_eSetDecksVisible = 6, - k_eSetTimerMode = 7, - k_eShareDeck = 8, - k_eSetGameMode = 9, - k_eSetReady = 10, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyActionResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eInvalidLobbyID = 2, - k_eInvalidPermissions = 3, - k_eInvalidTarget = 4, - k_eInvalidValue = 5, - k_eInMatchMaking = 6, - k_eInMatch = 7, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyStartMatch : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong private_lobby_id - { - get => __pbn__private_lobby_id.GetValueOrDefault(); - set => __pbn__private_lobby_id = value; - } - public bool ShouldSerializeprivate_lobby_id() => __pbn__private_lobby_id != null; - public void Resetprivate_lobby_id() => __pbn__private_lobby_id = null; - private ulong? __pbn__private_lobby_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyStartMatchResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eInvalidLobbyID = 3, - k_eInvalidPermissions = 4, - k_ePlayersMissingDeck = 5, - k_eInMatchmaking = 6, - k_eInMatch = 7, - k_eMissingPlayer = 8, - k_eUnownedCards = 9, - k_eInvalidVersion = 10, - k_ePlayersNotReady = 11, - k_eCannotSelectRegion = 12, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyInviteUser : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong private_lobby_id - { - get => __pbn__private_lobby_id.GetValueOrDefault(); - set => __pbn__private_lobby_id = value; - } - public bool ShouldSerializeprivate_lobby_id() => __pbn__private_lobby_id != null; - public void Resetprivate_lobby_id() => __pbn__private_lobby_id = null; - private ulong? __pbn__private_lobby_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint invite_account_id - { - get => __pbn__invite_account_id.GetValueOrDefault(); - set => __pbn__invite_account_id = value; - } - public bool ShouldSerializeinvite_account_id() => __pbn__invite_account_id != null; - public void Resetinvite_account_id() => __pbn__invite_account_id = null; - private uint? __pbn__invite_account_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyInviteUserResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public bool user_online - { - get => __pbn__user_online.GetValueOrDefault(); - set => __pbn__user_online = value; - } - public bool ShouldSerializeuser_online() => __pbn__user_online != null; - public void Resetuser_online() => __pbn__user_online = null; - private bool? __pbn__user_online; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eAlreadyInvited = 2, - k_eInvalidPermissions = 3, - k_eInvalidLobbyID = 4, - k_eDisabled = 5, - k_eTooManyInvites = 6, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyChallenge : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint challenge_account_id - { - get => __pbn__challenge_account_id.GetValueOrDefault(); - set => __pbn__challenge_account_id = value; - } - public bool ShouldSerializechallenge_account_id() => __pbn__challenge_account_id != null; - public void Resetchallenge_account_id() => __pbn__challenge_account_id = null; - private uint? __pbn__challenge_account_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint client_version - { - get => __pbn__client_version.GetValueOrDefault(); - set => __pbn__client_version = value; - } - public bool ShouldSerializeclient_version() => __pbn__client_version != null; - public void Resetclient_version() => __pbn__client_version = null; - private uint? __pbn__client_version; - - [global::ProtoBuf.ProtoMember(3)] - public CMsgRegionPingTimesClient ping_times { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyChallengeResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eSuccess)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eSuccess; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong private_lobby_id - { - get => __pbn__private_lobby_id.GetValueOrDefault(); - set => __pbn__private_lobby_id = value; - } - public bool ShouldSerializeprivate_lobby_id() => __pbn__private_lobby_id != null; - public void Resetprivate_lobby_id() => __pbn__private_lobby_id = null; - private ulong? __pbn__private_lobby_id; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eSuccess = 0, - k_eTargetNotFriends = 1, - k_eTargetInMatch = 2, - k_eTargetOffline = 3, - k_eInternalError = 4, - k_eCannotMatchmake = 5, - k_eInvalidVersion = 6, - k_eNoRegionPings = 7, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToClientPrivateLobbyEvent : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong private_lobby_id - { - get => __pbn__private_lobby_id.GetValueOrDefault(); - set => __pbn__private_lobby_id = value; - } - public bool ShouldSerializeprivate_lobby_id() => __pbn__private_lobby_id != null; - public void Resetprivate_lobby_id() => __pbn__private_lobby_id = null; - private ulong? __pbn__private_lobby_id; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue(EEvent.k_ePlayerKicked)] - public EEvent @event - { - get => __pbn__event ?? EEvent.k_ePlayerKicked; - set => __pbn__event = value; - } - public bool ShouldSerializeevent() => __pbn__event != null; - public void Resetevent() => __pbn__event = null; - private EEvent? __pbn__event; - - [global::ProtoBuf.ProtoMember(3)] - public uint initiator_account_id - { - get => __pbn__initiator_account_id.GetValueOrDefault(); - set => __pbn__initiator_account_id = value; - } - public bool ShouldSerializeinitiator_account_id() => __pbn__initiator_account_id != null; - public void Resetinitiator_account_id() => __pbn__initiator_account_id = null; - private uint? __pbn__initiator_account_id; - - [global::ProtoBuf.ProtoMember(4)] - public uint target_account_id - { - get => __pbn__target_account_id.GetValueOrDefault(); - set => __pbn__target_account_id = value; - } - public bool ShouldSerializetarget_account_id() => __pbn__target_account_id != null; - public void Resettarget_account_id() => __pbn__target_account_id = null; - private uint? __pbn__target_account_id; - - [global::ProtoBuf.ProtoMember(5)] - public byte[] bytes_data - { - get => __pbn__bytes_data; - set => __pbn__bytes_data = value; - } - public bool ShouldSerializebytes_data() => __pbn__bytes_data != null; - public void Resetbytes_data() => __pbn__bytes_data = null; - private byte[] __pbn__bytes_data; - - [global::ProtoBuf.ProtoMember(6)] - [global::System.ComponentModel.DefaultValue("")] - public string str_data - { - get => __pbn__str_data ?? ""; - set => __pbn__str_data = value; - } - public bool ShouldSerializestr_data() => __pbn__str_data != null; - public void Resetstr_data() => __pbn__str_data = null; - private string __pbn__str_data; - - [global::ProtoBuf.ProtoMember(7)] - public ulong uint_data - { - get => __pbn__uint_data.GetValueOrDefault(); - set => __pbn__uint_data = value; - } - public bool ShouldSerializeuint_data() => __pbn__uint_data != null; - public void Resetuint_data() => __pbn__uint_data = null; - private ulong? __pbn__uint_data; - - [global::ProtoBuf.ProtoContract()] - public enum EEvent - { - k_ePlayerKicked = 1, - k_eDeckShared = 2, - k_eJoinedLobby = 3, - k_eMatchCompleted = 4, - k_eMatchMakingStopped_User = 5, - k_eMatchMakingStopped_Version = 6, - k_eMatchMakingStopped_NoServerRegion = 7, - k_eLeftLobby = 8, - k_eDeclinedInvite = 9, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyClientVersion : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong private_lobby_id - { - get => __pbn__private_lobby_id.GetValueOrDefault(); - set => __pbn__private_lobby_id = value; - } - public bool ShouldSerializeprivate_lobby_id() => __pbn__private_lobby_id != null; - public void Resetprivate_lobby_id() => __pbn__private_lobby_id = null; - private ulong? __pbn__private_lobby_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint client_version - { - get => __pbn__client_version.GetValueOrDefault(); - set => __pbn__client_version = value; - } - public bool ShouldSerializeclient_version() => __pbn__client_version != null; - public void Resetclient_version() => __pbn__client_version = null; - private uint? __pbn__client_version; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyJoinChatRoom : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong private_lobby_id - { - get => __pbn__private_lobby_id.GetValueOrDefault(); - set => __pbn__private_lobby_id = value; - } - public bool ShouldSerializeprivate_lobby_id() => __pbn__private_lobby_id != null; - public void Resetprivate_lobby_id() => __pbn__private_lobby_id = null; - private ulong? __pbn__private_lobby_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCPrivateLobbyJoinChatRoomResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eSuccess)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eSuccess; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eSuccess = 0, - k_eInternalError = 1, - k_eDisabled = 2, - k_eNoChatRoomAvailable = 3, - k_eInvalidLobbyID = 4, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCMatchSignout : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint start_time - { - get => __pbn__start_time.GetValueOrDefault(); - set => __pbn__start_time = value; - } - public bool ShouldSerializestart_time() => __pbn__start_time != null; - public void Resetstart_time() => __pbn__start_time = null; - private uint? __pbn__start_time; - - [global::ProtoBuf.ProtoMember(2)] - public uint version - { - get => __pbn__version.GetValueOrDefault(); - set => __pbn__version = value; - } - public bool ShouldSerializeversion() => __pbn__version != null; - public void Resetversion() => __pbn__version = null; - private uint? __pbn__version; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue(EDCGMatchMode.k_EDCGMatchMode_Unranked)] - public EDCGMatchMode match_mode - { - get => __pbn__match_mode ?? EDCGMatchMode.k_EDCGMatchMode_Unranked; - set => __pbn__match_mode = value; - } - public bool ShouldSerializematch_mode() => __pbn__match_mode != null; - public void Resetmatch_mode() => __pbn__match_mode = null; - private EDCGMatchMode? __pbn__match_mode; - - [global::ProtoBuf.ProtoMember(4)] - public CMsgMatchData match_data { get; set; } - - [global::ProtoBuf.ProtoMember(5)] - public global::System.Collections.Generic.List additional_data { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToClientSDRTicket : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue("")] - public string ticket - { - get => __pbn__ticket ?? ""; - set => __pbn__ticket = value; - } - public bool ShouldSerializeticket() => __pbn__ticket != null; - public void Resetticket() => __pbn__ticket = null; - private string __pbn__ticket; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCReplacementSDRTicket : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong lobby_id - { - get => __pbn__lobby_id.GetValueOrDefault(); - set => __pbn__lobby_id = value; - } - public bool ShouldSerializelobby_id() => __pbn__lobby_id != null; - public void Resetlobby_id() => __pbn__lobby_id = null; - private ulong? __pbn__lobby_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCInitialGrantAck : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint expected_def_index - { - get => __pbn__expected_def_index.GetValueOrDefault(); - set => __pbn__expected_def_index = value; - } - public bool ShouldSerializeexpected_def_index() => __pbn__expected_def_index != null; - public void Resetexpected_def_index() => __pbn__expected_def_index = null; - private uint? __pbn__expected_def_index; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCRecycleCards : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List item_ids { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(2)] - public uint recycle_offer_version - { - get => __pbn__recycle_offer_version.GetValueOrDefault(); - set => __pbn__recycle_offer_version = value; - } - public bool ShouldSerializerecycle_offer_version() => __pbn__recycle_offer_version != null; - public void Resetrecycle_offer_version() => __pbn__recycle_offer_version = null; - private uint? __pbn__recycle_offer_version; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCRecycleCardsResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List granted_items { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3)] - public uint resulting_points - { - get => __pbn__resulting_points.GetValueOrDefault(); - set => __pbn__resulting_points = value; - } - public bool ShouldSerializeresulting_points() => __pbn__resulting_points != null; - public void Resetresulting_points() => __pbn__resulting_points = null; - private uint? __pbn__resulting_points; - - [global::ProtoBuf.ProtoContract()] - public partial class GrantedItem : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint def_index - { - get => __pbn__def_index.GetValueOrDefault(); - set => __pbn__def_index = value; - } - public bool ShouldSerializedef_index() => __pbn__def_index != null; - public void Resetdef_index() => __pbn__def_index = null; - private uint? __pbn__def_index; - - [global::ProtoBuf.ProtoMember(2)] - public ulong item_id - { - get => __pbn__item_id.GetValueOrDefault(); - set => __pbn__item_id = value; - } - public bool ShouldSerializeitem_id() => __pbn__item_id != null; - public void Resetitem_id() => __pbn__item_id = null; - private ulong? __pbn__item_id; - - } - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eMissingItems = 2, - k_eIncorrectVersion = 3, - k_eDisabled = 4, - k_eInvalidItem = 5, - k_eTooManyItems = 6, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCSetPlayerBadge : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint player_badge - { - get => __pbn__player_badge.GetValueOrDefault(); - set => __pbn__player_badge = value; - } - public bool ShouldSerializeplayer_badge() => __pbn__player_badge != null; - public void Resetplayer_badge() => __pbn__player_badge = null; - private uint? __pbn__player_badge; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCReplacementSDRTicketResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue("")] - public string ticket - { - get => __pbn__ticket ?? ""; - set => __pbn__ticket = value; - } - public bool ShouldSerializeticket() => __pbn__ticket != null; - public void Resetticket() => __pbn__ticket = null; - private string __pbn__ticket; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string error_message - { - get => __pbn__error_message ?? ""; - set => __pbn__error_message = value; - } - public bool ShouldSerializeerror_message() => __pbn__error_message != null; - public void Reseterror_message() => __pbn__error_message = null; - private string __pbn__error_message; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyGetInfo : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public bool subscribe - { - get => __pbn__subscribe.GetValueOrDefault(); - set => __pbn__subscribe = value; - } - public bool ShouldSerializesubscribe() => __pbn__subscribe != null; - public void Resetsubscribe() => __pbn__subscribe = null; - private bool? __pbn__subscribe; - - [global::ProtoBuf.ProtoMember(3)] - public uint tourney_salt - { - get => __pbn__tourney_salt.GetValueOrDefault(); - set => __pbn__tourney_salt = value; - } - public bool ShouldSerializetourney_salt() => __pbn__tourney_salt != null; - public void Resettourney_salt() => __pbn__tourney_salt = null; - private uint? __pbn__tourney_salt; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyGetInfoResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public CDCGTourney tourney { get; set; } - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eInvalidID = 1, - k_eMissingPermission = 2, - k_eSuccess = 3, - k_eTooBusy = 4, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyUnsubscribe : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToClientTourneyUpdated : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public CDCGTourney tourney { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToClientTourneySeriesMatchReady : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint phase_id - { - get => __pbn__phase_id.GetValueOrDefault(); - set => __pbn__phase_id = value; - } - public bool ShouldSerializephase_id() => __pbn__phase_id != null; - public void Resetphase_id() => __pbn__phase_id = null; - private uint? __pbn__phase_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint series_id - { - get => __pbn__series_id.GetValueOrDefault(); - set => __pbn__series_id = value; - } - public bool ShouldSerializeseries_id() => __pbn__series_id != null; - public void Resetseries_id() => __pbn__series_id = null; - private uint? __pbn__series_id; - - [global::ProtoBuf.ProtoMember(4)] - public global::System.Collections.Generic.List accounts_in_mm { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(5)] - public global::System.Collections.Generic.List accounts_not_in_mm { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToClientTourneySeriesMatchNotReady : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint phase_id - { - get => __pbn__phase_id.GetValueOrDefault(); - set => __pbn__phase_id = value; - } - public bool ShouldSerializephase_id() => __pbn__phase_id != null; - public void Resetphase_id() => __pbn__phase_id = null; - private uint? __pbn__phase_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint series_id - { - get => __pbn__series_id.GetValueOrDefault(); - set => __pbn__series_id = value; - } - public bool ShouldSerializeseries_id() => __pbn__series_id != null; - public void Resetseries_id() => __pbn__series_id = null; - private uint? __pbn__series_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgCreateTourneyPhase : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(CDCGTourney.EFormat.k_eFormat_Invalid)] - public CDCGTourney.EFormat format - { - get => __pbn__format ?? CDCGTourney.EFormat.k_eFormat_Invalid; - set => __pbn__format = value; - } - public bool ShouldSerializeformat() => __pbn__format != null; - public void Resetformat() => __pbn__format = null; - private CDCGTourney.EFormat? __pbn__format; - - [global::ProtoBuf.ProtoMember(2)] - public DeckSettings deck_settings { get; set; } - - [global::ProtoBuf.ProtoMember(3)] - public uint max_players - { - get => __pbn__max_players.GetValueOrDefault(); - set => __pbn__max_players = value; - } - public bool ShouldSerializemax_players() => __pbn__max_players != null; - public void Resetmax_players() => __pbn__max_players = null; - private uint? __pbn__max_players; - - [global::ProtoBuf.ProtoMember(5)] - public bool edit_stage - { - get => __pbn__edit_stage.GetValueOrDefault(); - set => __pbn__edit_stage = value; - } - public bool ShouldSerializeedit_stage() => __pbn__edit_stage != null; - public void Resetedit_stage() => __pbn__edit_stage = null; - private bool? __pbn__edit_stage; - - [global::ProtoBuf.ProtoMember(20)] - public Bracket bracket { get; set; } - - [global::ProtoBuf.ProtoMember(21)] - public Swiss swiss { get; set; } - - [global::ProtoBuf.ProtoMember(22)] - public FreeForAll free_for_all { get; set; } - - [global::ProtoBuf.ProtoContract()] - public partial class DeckSettings : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(CMsgCreateTourneyPhase.EDeckMode.k_eUsePreviousPhase)] - public CMsgCreateTourneyPhase.EDeckMode deck_mode - { - get => __pbn__deck_mode ?? CMsgCreateTourneyPhase.EDeckMode.k_eUsePreviousPhase; - set => __pbn__deck_mode = value; - } - public bool ShouldSerializedeck_mode() => __pbn__deck_mode != null; - public void Resetdeck_mode() => __pbn__deck_mode = null; - private CMsgCreateTourneyPhase.EDeckMode? __pbn__deck_mode; - - [global::ProtoBuf.ProtoMember(2)] - public uint random_colors - { - get => __pbn__random_colors.GetValueOrDefault(); - set => __pbn__random_colors = value; - } - public bool ShouldSerializerandom_colors() => __pbn__random_colors != null; - public void Resetrandom_colors() => __pbn__random_colors = null; - private uint? __pbn__random_colors; - - [global::ProtoBuf.ProtoMember(3)] - public uint limited_format - { - get => __pbn__limited_format.GetValueOrDefault(); - set => __pbn__limited_format = value; - } - public bool ShouldSerializelimited_format() => __pbn__limited_format != null; - public void Resetlimited_format() => __pbn__limited_format = null; - private uint? __pbn__limited_format; - - [global::ProtoBuf.ProtoMember(4)] - public bool register_decks - { - get => __pbn__register_decks.GetValueOrDefault(); - set => __pbn__register_decks = value; - } - public bool ShouldSerializeregister_decks() => __pbn__register_decks != null; - public void Resetregister_decks() => __pbn__register_decks = null; - private bool? __pbn__register_decks; - - [global::ProtoBuf.ProtoMember(5)] - public uint validator_id - { - get => __pbn__validator_id.GetValueOrDefault(); - set => __pbn__validator_id = value; - } - public bool ShouldSerializevalidator_id() => __pbn__validator_id != null; - public void Resetvalidator_id() => __pbn__validator_id = null; - private uint? __pbn__validator_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class Swiss : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(CMsgCreateTourneyPhase.ESwissMatches.k_eBestOfOne)] - public CMsgCreateTourneyPhase.ESwissMatches swiss_matches - { - get => __pbn__swiss_matches ?? CMsgCreateTourneyPhase.ESwissMatches.k_eBestOfOne; - set => __pbn__swiss_matches = value; - } - public bool ShouldSerializeswiss_matches() => __pbn__swiss_matches != null; - public void Resetswiss_matches() => __pbn__swiss_matches = null; - private CMsgCreateTourneyPhase.ESwissMatches? __pbn__swiss_matches; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue(CMsgCreateTourneyPhase.ESwissScoring.k_eWinsThreePoints)] - public CMsgCreateTourneyPhase.ESwissScoring swiss_scoring - { - get => __pbn__swiss_scoring ?? CMsgCreateTourneyPhase.ESwissScoring.k_eWinsThreePoints; - set => __pbn__swiss_scoring = value; - } - public bool ShouldSerializeswiss_scoring() => __pbn__swiss_scoring != null; - public void Resetswiss_scoring() => __pbn__swiss_scoring = null; - private CMsgCreateTourneyPhase.ESwissScoring? __pbn__swiss_scoring; - - [global::ProtoBuf.ProtoMember(3)] - public uint num_rounds - { - get => __pbn__num_rounds.GetValueOrDefault(); - set => __pbn__num_rounds = value; - } - public bool ShouldSerializenum_rounds() => __pbn__num_rounds != null; - public void Resetnum_rounds() => __pbn__num_rounds = null; - private uint? __pbn__num_rounds; - - [global::ProtoBuf.ProtoMember(4)] - public bool continue_prior_phase - { - get => __pbn__continue_prior_phase.GetValueOrDefault(); - set => __pbn__continue_prior_phase = value; - } - public bool ShouldSerializecontinue_prior_phase() => __pbn__continue_prior_phase != null; - public void Resetcontinue_prior_phase() => __pbn__continue_prior_phase = null; - private bool? __pbn__continue_prior_phase; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class Bracket : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint best_of - { - get => __pbn__best_of.GetValueOrDefault(); - set => __pbn__best_of = value; - } - public bool ShouldSerializebest_of() => __pbn__best_of != null; - public void Resetbest_of() => __pbn__best_of = null; - private uint? __pbn__best_of; - - [global::ProtoBuf.ProtoMember(2)] - public uint finals_best_of - { - get => __pbn__finals_best_of.GetValueOrDefault(); - set => __pbn__finals_best_of = value; - } - public bool ShouldSerializefinals_best_of() => __pbn__finals_best_of != null; - public void Resetfinals_best_of() => __pbn__finals_best_of = null; - private uint? __pbn__finals_best_of; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class FreeForAll : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint max_games_per_player - { - get => __pbn__max_games_per_player.GetValueOrDefault(); - set => __pbn__max_games_per_player = value; - } - public bool ShouldSerializemax_games_per_player() => __pbn__max_games_per_player != null; - public void Resetmax_games_per_player() => __pbn__max_games_per_player = null; - private uint? __pbn__max_games_per_player; - - [global::ProtoBuf.ProtoMember(2)] - public uint auto_advance_after_s - { - get => __pbn__auto_advance_after_s.GetValueOrDefault(); - set => __pbn__auto_advance_after_s = value; - } - public bool ShouldSerializeauto_advance_after_s() => __pbn__auto_advance_after_s != null; - public void Resetauto_advance_after_s() => __pbn__auto_advance_after_s = null; - private uint? __pbn__auto_advance_after_s; - - } - - [global::ProtoBuf.ProtoContract()] - public enum ESwissMatches - { - k_eBestOfOne = 0, - k_eOneMatch = 1, - k_eTwoMatches = 2, - k_eBestOfThree = 3, - k_eBestOfThree_Ties = 4, - k_eBestOfFive = 5, - k_eBestOfFive_Ties = 6, - } - - [global::ProtoBuf.ProtoContract()] - public enum ESwissScoring - { - k_eWinsThreePoints = 0, - k_eWinsTwoPoints = 1, - } - - [global::ProtoBuf.ProtoContract()] - public enum EDeckMode - { - k_eUsePreviousPhase = 0, - k_eLimited = 1, - k_eAdditionalLimited = 2, - k_eConstructed = 3, - k_eRandom = 4, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCCreateTourney : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue("")] - public string tourney_name - { - get => __pbn__tourney_name ?? ""; - set => __pbn__tourney_name = value; - } - public bool ShouldSerializetourney_name() => __pbn__tourney_name != null; - public void Resettourney_name() => __pbn__tourney_name = null; - private string __pbn__tourney_name; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string tourney_msg - { - get => __pbn__tourney_msg ?? ""; - set => __pbn__tourney_msg = value; - } - public bool ShouldSerializetourney_msg() => __pbn__tourney_msg != null; - public void Resettourney_msg() => __pbn__tourney_msg = null; - private string __pbn__tourney_msg; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue("")] - public string tourney_status - { - get => __pbn__tourney_status ?? ""; - set => __pbn__tourney_status = value; - } - public bool ShouldSerializetourney_status() => __pbn__tourney_status != null; - public void Resettourney_status() => __pbn__tourney_status = null; - private string __pbn__tourney_status; - - [global::ProtoBuf.ProtoMember(4)] - public global::System.Collections.Generic.List phases { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(5)] - public bool seed_stage - { - get => __pbn__seed_stage.GetValueOrDefault(); - set => __pbn__seed_stage = value; - } - public bool ShouldSerializeseed_stage() => __pbn__seed_stage != null; - public void Resetseed_stage() => __pbn__seed_stage = null; - private bool? __pbn__seed_stage; - - [global::ProtoBuf.ProtoMember(6)] - public bool advanced_mode - { - get => __pbn__advanced_mode.GetValueOrDefault(); - set => __pbn__advanced_mode = value; - } - public bool ShouldSerializeadvanced_mode() => __pbn__advanced_mode != null; - public void Resetadvanced_mode() => __pbn__advanced_mode = null; - private bool? __pbn__advanced_mode; - - [global::ProtoBuf.ProtoMember(7)] - [global::System.ComponentModel.DefaultValue(EPrivacy.k_ePrivacy_Default)] - public EPrivacy privacy_mode - { - get => __pbn__privacy_mode ?? EPrivacy.k_ePrivacy_Default; - set => __pbn__privacy_mode = value; - } - public bool ShouldSerializeprivacy_mode() => __pbn__privacy_mode != null; - public void Resetprivacy_mode() => __pbn__privacy_mode = null; - private EPrivacy? __pbn__privacy_mode; - - [global::ProtoBuf.ProtoMember(8)] - public bool open_spectating - { - get => __pbn__open_spectating.GetValueOrDefault(); - set => __pbn__open_spectating = value; - } - public bool ShouldSerializeopen_spectating() => __pbn__open_spectating != null; - public void Resetopen_spectating() => __pbn__open_spectating = null; - private bool? __pbn__open_spectating; - - [global::ProtoBuf.ProtoMember(9)] - public uint timer_mode - { - get => __pbn__timer_mode.GetValueOrDefault(); - set => __pbn__timer_mode = value; - } - public bool ShouldSerializetimer_mode() => __pbn__timer_mode != null; - public void Resettimer_mode() => __pbn__timer_mode = null; - private uint? __pbn__timer_mode; - - [global::ProtoBuf.ProtoContract()] - public enum EPrivacy - { - k_ePrivacy_Default = 0, - k_ePrivacy_Public = 1, - k_ePrivacy_MembersOnly = 2, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCCreateTourneyResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eRateLimited = 2, - k_eInvalidParams = 3, - k_eDisabled = 4, - k_eInTooManyTourneys = 5, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAcceptInvite : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAcceptInviteResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eTourneyJoinClosed = 3, - k_eMissingPermissions = 4, - k_eTourneyFull = 5, - k_eInTooManyTourneys = 6, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyRejectInvite : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyRejectInviteResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyRevokeInvite : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyRevokeInviteResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eMissingInvite = 4, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAdminSwitchStage : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue(CDCGTourney.EStage.k_eStage_Configure)] - public CDCGTourney.EStage transition_from - { - get => __pbn__transition_from ?? CDCGTourney.EStage.k_eStage_Configure; - set => __pbn__transition_from = value; - } - public bool ShouldSerializetransition_from() => __pbn__transition_from != null; - public void Resettransition_from() => __pbn__transition_from = null; - private CDCGTourney.EStage? __pbn__transition_from; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue(CDCGTourney.EStage.k_eStage_Configure)] - public CDCGTourney.EStage transition_to - { - get => __pbn__transition_to ?? CDCGTourney.EStage.k_eStage_Configure; - set => __pbn__transition_to = value; - } - public bool ShouldSerializetransition_to() => __pbn__transition_to != null; - public void Resettransition_to() => __pbn__transition_to = null; - private CDCGTourney.EStage? __pbn__transition_to; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAdminSwitchStageResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eInsufficientPlayers = 4, - k_eIncorrectStage = 5, - k_eInvalidTransition = 6, - k_eUnregisteredDecks = 7, - k_eMissingEntryFees = 8, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAdminKick : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAdminKickResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eInvalidTarget = 4, - k_eTourneyClosed = 5, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAdminGrantWin : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint phase_id - { - get => __pbn__phase_id.GetValueOrDefault(); - set => __pbn__phase_id = value; - } - public bool ShouldSerializephase_id() => __pbn__phase_id != null; - public void Resetphase_id() => __pbn__phase_id = null; - private uint? __pbn__phase_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint series_id - { - get => __pbn__series_id.GetValueOrDefault(); - set => __pbn__series_id = value; - } - public bool ShouldSerializeseries_id() => __pbn__series_id != null; - public void Resetseries_id() => __pbn__series_id = null; - private uint? __pbn__series_id; - - [global::ProtoBuf.ProtoMember(4)] - public bool grant_bye - { - get => __pbn__grant_bye.GetValueOrDefault(); - set => __pbn__grant_bye = value; - } - public bool ShouldSerializegrant_bye() => __pbn__grant_bye != null; - public void Resetgrant_bye() => __pbn__grant_bye = null; - private bool? __pbn__grant_bye; - - [global::ProtoBuf.ProtoMember(5)] - public uint winner_id - { - get => __pbn__winner_id.GetValueOrDefault(); - set => __pbn__winner_id = value; - } - public bool ShouldSerializewinner_id() => __pbn__winner_id != null; - public void Resetwinner_id() => __pbn__winner_id = null; - private uint? __pbn__winner_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAdminGrantWinResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eInvalidAccount = 4, - k_eSeriesCompleted = 5, - k_eSeriesNotReady = 6, - k_eInvalidSeries = 7, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAdminChangeRights : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint rights_flags - { - get => __pbn__rights_flags.GetValueOrDefault(); - set => __pbn__rights_flags = value; - } - public bool ShouldSerializerights_flags() => __pbn__rights_flags != null; - public void Resetrights_flags() => __pbn__rights_flags = null; - private uint? __pbn__rights_flags; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAdminChangeRightsResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eInvalidAccount = 3, - k_eInvalidRights = 4, - k_eTourneyClosed = 5, - k_ePlayerPoolIsFull = 6, - k_eCannotChangePlayer = 7, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyRegisterDeck : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public byte[] deck_bytes - { - get => __pbn__deck_bytes; - set => __pbn__deck_bytes = value; - } - public bool ShouldSerializedeck_bytes() => __pbn__deck_bytes != null; - public void Resetdeck_bytes() => __pbn__deck_bytes = null; - private byte[] __pbn__deck_bytes; - - [global::ProtoBuf.ProtoMember(3)] - public uint phase_id - { - get => __pbn__phase_id.GetValueOrDefault(); - set => __pbn__phase_id = value; - } - public bool ShouldSerializephase_id() => __pbn__phase_id != null; - public void Resetphase_id() => __pbn__phase_id = null; - private uint? __pbn__phase_id; - - [global::ProtoBuf.ProtoMember(4)] - public uint deck_index - { - get => __pbn__deck_index.GetValueOrDefault(); - set => __pbn__deck_index = value; - } - public bool ShouldSerializedeck_index() => __pbn__deck_index != null; - public void Resetdeck_index() => __pbn__deck_index = null; - private uint? __pbn__deck_index; - - [global::ProtoBuf.ProtoMember(5)] - public uint shared_by - { - get => __pbn__shared_by.GetValueOrDefault(); - set => __pbn__shared_by = value; - } - public bool ShouldSerializeshared_by() => __pbn__shared_by != null; - public void Resetshared_by() => __pbn__shared_by = null; - private uint? __pbn__shared_by; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyRegisterDeckResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eUnownedCards = 4, - k_eRegistrationClosed = 5, - k_eRegistrationNotRequired = 6, - k_eInvalidDeck = 7, - k_eInvalidDeckIndex = 8, - k_eCannotRegisterForPhase = 9, - k_ePhaseNotReady = 10, - k_eInvalidSharedDeck = 11, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyUserLeave : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyUserLeaveResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eLeaveNotAllowed = 7, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyRegisterSharedDeck : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public byte[] deck_bytes - { - get => __pbn__deck_bytes; - set => __pbn__deck_bytes = value; - } - public bool ShouldSerializedeck_bytes() => __pbn__deck_bytes != null; - public void Resetdeck_bytes() => __pbn__deck_bytes = null; - private byte[] __pbn__deck_bytes; - - [global::ProtoBuf.ProtoMember(3)] - public uint shared_slot - { - get => __pbn__shared_slot.GetValueOrDefault(); - set => __pbn__shared_slot = value; - } - public bool ShouldSerializeshared_slot() => __pbn__shared_slot != null; - public void Resetshared_slot() => __pbn__shared_slot = null; - private uint? __pbn__shared_slot; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyRegisterSharedDeckResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eInvalidSlot = 4, - k_eSlotInUse = 5, - k_eUnownedCards = 6, - k_eSharingClosed = 7, - k_eInvalidDeck = 8, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyGetRegisteredDecks : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyGetRegisteredDecksResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List decks { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyCreateOpenInvite : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint max_uses - { - get => __pbn__max_uses.GetValueOrDefault(); - set => __pbn__max_uses = value; - } - public bool ShouldSerializemax_uses() => __pbn__max_uses != null; - public void Resetmax_uses() => __pbn__max_uses = null; - private uint? __pbn__max_uses; - - [global::ProtoBuf.ProtoMember(3)] - public global::System.Collections.Generic.List rights { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyCreateOpenInviteResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong invite_key - { - get => __pbn__invite_key.GetValueOrDefault(); - set => __pbn__invite_key = value; - } - public bool ShouldSerializeinvite_key() => __pbn__invite_key != null; - public void Resetinvite_key() => __pbn__invite_key = null; - private ulong? __pbn__invite_key; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eInvalidUses = 4, - k_eInvalidStage = 5, - k_eInvalidRights = 6, - k_eTooManyOutstandingKeys = 7, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyRevokeOpenInvite : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong invite_key - { - get => __pbn__invite_key.GetValueOrDefault(); - set => __pbn__invite_key = value; - } - public bool ShouldSerializeinvite_key() => __pbn__invite_key != null; - public void Resetinvite_key() => __pbn__invite_key = null; - private ulong? __pbn__invite_key; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyRevokeOpenInviteResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eInvalidKey = 4, - k_eInvalidStage = 5, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyGetOpenInvites : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyGetOpenInvitesResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List open_invites { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class OpenInvite : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong invite_key - { - get => __pbn__invite_key.GetValueOrDefault(); - set => __pbn__invite_key = value; - } - public bool ShouldSerializeinvite_key() => __pbn__invite_key != null; - public void Resetinvite_key() => __pbn__invite_key = null; - private ulong? __pbn__invite_key; - - [global::ProtoBuf.ProtoMember(2)] - public uint created_by - { - get => __pbn__created_by.GetValueOrDefault(); - set => __pbn__created_by = value; - } - public bool ShouldSerializecreated_by() => __pbn__created_by != null; - public void Resetcreated_by() => __pbn__created_by = null; - private uint? __pbn__created_by; - - [global::ProtoBuf.ProtoMember(3)] - public uint max_uses - { - get => __pbn__max_uses.GetValueOrDefault(); - set => __pbn__max_uses = value; - } - public bool ShouldSerializemax_uses() => __pbn__max_uses != null; - public void Resetmax_uses() => __pbn__max_uses = null; - private uint? __pbn__max_uses; - - [global::ProtoBuf.ProtoMember(4)] - public uint times_used - { - get => __pbn__times_used.GetValueOrDefault(); - set => __pbn__times_used = value; - } - public bool ShouldSerializetimes_used() => __pbn__times_used != null; - public void Resettimes_used() => __pbn__times_used = null; - private uint? __pbn__times_used; - - [global::ProtoBuf.ProtoMember(5)] - public uint invite_rights - { - get => __pbn__invite_rights.GetValueOrDefault(); - set => __pbn__invite_rights = value; - } - public bool ShouldSerializeinvite_rights() => __pbn__invite_rights != null; - public void Resetinvite_rights() => __pbn__invite_rights = null; - private uint? __pbn__invite_rights; - - } - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eInvalidStage = 4, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAdminSwitchPhaseStage : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint phase_id - { - get => __pbn__phase_id.GetValueOrDefault(); - set => __pbn__phase_id = value; - } - public bool ShouldSerializephase_id() => __pbn__phase_id != null; - public void Resetphase_id() => __pbn__phase_id = null; - private uint? __pbn__phase_id; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue(CDCGTourney.EPhaseStage.k_ePhaseStage_Pending)] - public CDCGTourney.EPhaseStage transition_from - { - get => __pbn__transition_from ?? CDCGTourney.EPhaseStage.k_ePhaseStage_Pending; - set => __pbn__transition_from = value; - } - public bool ShouldSerializetransition_from() => __pbn__transition_from != null; - public void Resettransition_from() => __pbn__transition_from = null; - private CDCGTourney.EPhaseStage? __pbn__transition_from; - - [global::ProtoBuf.ProtoMember(4)] - [global::System.ComponentModel.DefaultValue(CDCGTourney.EPhaseStage.k_ePhaseStage_Pending)] - public CDCGTourney.EPhaseStage transition_to - { - get => __pbn__transition_to ?? CDCGTourney.EPhaseStage.k_ePhaseStage_Pending; - set => __pbn__transition_to = value; - } - public bool ShouldSerializetransition_to() => __pbn__transition_to != null; - public void Resettransition_to() => __pbn__transition_to = null; - private CDCGTourney.EPhaseStage? __pbn__transition_to; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAdminSwitchPhaseStageResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eInsufficientPlayers = 4, - k_eIncorrectStage = 5, - k_eInvalidTransition = 6, - k_eUnregisteredDecks = 7, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyGetOverview : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyGetOverviewResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string tourney_name - { - get => __pbn__tourney_name ?? ""; - set => __pbn__tourney_name = value; - } - public bool ShouldSerializetourney_name() => __pbn__tourney_name != null; - public void Resettourney_name() => __pbn__tourney_name = null; - private string __pbn__tourney_name; - - [global::ProtoBuf.ProtoMember(3)] - public uint created_by - { - get => __pbn__created_by.GetValueOrDefault(); - set => __pbn__created_by = value; - } - public bool ShouldSerializecreated_by() => __pbn__created_by != null; - public void Resetcreated_by() => __pbn__created_by = null; - private uint? __pbn__created_by; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eTooBusy = 4, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneySetStatus : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string tourney_status - { - get => __pbn__tourney_status ?? ""; - set => __pbn__tourney_status = value; - } - public bool ShouldSerializetourney_status() => __pbn__tourney_status != null; - public void Resettourney_status() => __pbn__tourney_status = null; - private string __pbn__tourney_status; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneySetStatusResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAddPhase : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public CMsgCreateTourneyPhase phase { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAddPhaseResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eTooManyPhases = 4, - k_eInvalidParams = 5, - k_eNotInConfigure = 6, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyRemovePhase : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint phase_id - { - get => __pbn__phase_id.GetValueOrDefault(); - set => __pbn__phase_id = value; - } - public bool ShouldSerializephase_id() => __pbn__phase_id != null; - public void Resetphase_id() => __pbn__phase_id = null; - private uint? __pbn__phase_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyRemovePhaseResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eNotLastPhase = 4, - k_eNotInConfigure = 5, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneySpectateMatch : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint phase_id - { - get => __pbn__phase_id.GetValueOrDefault(); - set => __pbn__phase_id = value; - } - public bool ShouldSerializephase_id() => __pbn__phase_id != null; - public void Resetphase_id() => __pbn__phase_id = null; - private uint? __pbn__phase_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint series_id - { - get => __pbn__series_id.GetValueOrDefault(); - set => __pbn__series_id = value; - } - public bool ShouldSerializeseries_id() => __pbn__series_id != null; - public void Resetseries_id() => __pbn__series_id = null; - private uint? __pbn__series_id; - - [global::ProtoBuf.ProtoMember(4)] - public bool player_1_perspective - { - get => __pbn__player_1_perspective.GetValueOrDefault(); - set => __pbn__player_1_perspective = value; - } - public bool ShouldSerializeplayer_1_perspective() => __pbn__player_1_perspective != null; - public void Resetplayer_1_perspective() => __pbn__player_1_perspective = null; - private bool? __pbn__player_1_perspective; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneySpectateMatchResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eSuccess)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eSuccess; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public ulong match_id - { - get => __pbn__match_id.GetValueOrDefault(); - set => __pbn__match_id = value; - } - public bool ShouldSerializematch_id() => __pbn__match_id != null; - public void Resetmatch_id() => __pbn__match_id = null; - private ulong? __pbn__match_id; - - [global::ProtoBuf.ProtoMember(3, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong server_steam_id - { - get => __pbn__server_steam_id.GetValueOrDefault(); - set => __pbn__server_steam_id = value; - } - public bool ShouldSerializeserver_steam_id() => __pbn__server_steam_id != null; - public void Resetserver_steam_id() => __pbn__server_steam_id = null; - private ulong? __pbn__server_steam_id; - - [global::ProtoBuf.ProtoMember(4)] - public byte[] sdr_key - { - get => __pbn__sdr_key; - set => __pbn__sdr_key = value; - } - public bool ShouldSerializesdr_key() => __pbn__sdr_key != null; - public void Resetsdr_key() => __pbn__sdr_key = null; - private byte[] __pbn__sdr_key; - - [global::ProtoBuf.ProtoMember(5)] - public uint udp_connect_ip - { - get => __pbn__udp_connect_ip.GetValueOrDefault(); - set => __pbn__udp_connect_ip = value; - } - public bool ShouldSerializeudp_connect_ip() => __pbn__udp_connect_ip != null; - public void Resetudp_connect_ip() => __pbn__udp_connect_ip = null; - private uint? __pbn__udp_connect_ip; - - [global::ProtoBuf.ProtoMember(6)] - public uint udp_connect_port - { - get => __pbn__udp_connect_port.GetValueOrDefault(); - set => __pbn__udp_connect_port = value; - } - public bool ShouldSerializeudp_connect_port() => __pbn__udp_connect_port != null; - public void Resetudp_connect_port() => __pbn__udp_connect_port = null; - private uint? __pbn__udp_connect_port; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eSuccess = 1, - k_eInternalError = 2, - k_eInvalidSeries = 3, - k_eMissingPermissions = 4, - k_eNotInMatch = 5, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyInviteList : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List account_ids { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3)] - public global::System.Collections.Generic.List rights { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public enum ELimit - { - k_eLimit_MaxAccounts = 32, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyInviteListResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List invited_id { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3)] - public global::System.Collections.Generic.List already_invited_id { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eTooManyInvites = 2, - k_eRateLimited = 3, - k_eDisabled = 4, - k_eTooManyAccounts = 5, - k_eTourneyJoinClosed = 6, - k_eMissingPermissions = 7, - k_eTourneyFull = 8, - k_eInvalidRights = 9, - k_eNotFriends = 10, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAdminSetSeedValues : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List player_seeds { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class PlayerSeed : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint initial_seed - { - get => __pbn__initial_seed.GetValueOrDefault(); - set => __pbn__initial_seed = value; - } - public bool ShouldSerializeinitial_seed() => __pbn__initial_seed != null; - public void Resetinitial_seed() => __pbn__initial_seed = null; - private uint? __pbn__initial_seed; - - [global::ProtoBuf.ProtoMember(3)] - public uint initial_group - { - get => __pbn__initial_group.GetValueOrDefault(); - set => __pbn__initial_group = value; - } - public bool ShouldSerializeinitial_group() => __pbn__initial_group != null; - public void Resetinitial_group() => __pbn__initial_group = null; - private uint? __pbn__initial_group; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyAdminSetSeedValuesResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eInvalidStage = 5, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyEditStageSwapPlayers : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint phase_id - { - get => __pbn__phase_id.GetValueOrDefault(); - set => __pbn__phase_id = value; - } - public bool ShouldSerializephase_id() => __pbn__phase_id != null; - public void Resetphase_id() => __pbn__phase_id = null; - private uint? __pbn__phase_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint account_to_swap - { - get => __pbn__account_to_swap.GetValueOrDefault(); - set => __pbn__account_to_swap = value; - } - public bool ShouldSerializeaccount_to_swap() => __pbn__account_to_swap != null; - public void Resetaccount_to_swap() => __pbn__account_to_swap = null; - private uint? __pbn__account_to_swap; - - [global::ProtoBuf.ProtoMember(4)] - public uint swap_with - { - get => __pbn__swap_with.GetValueOrDefault(); - set => __pbn__swap_with = value; - } - public bool ShouldSerializeswap_with() => __pbn__swap_with != null; - public void Resetswap_with() => __pbn__swap_with = null; - private uint? __pbn__swap_with; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyEditStageSwapPlayersResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_ePhaseNotInEdit = 4, - k_eInvalidAccountID = 5, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyGetLimitedReplay : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint phase_id - { - get => __pbn__phase_id.GetValueOrDefault(); - set => __pbn__phase_id = value; - } - public bool ShouldSerializephase_id() => __pbn__phase_id != null; - public void Resetphase_id() => __pbn__phase_id = null; - private uint? __pbn__phase_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyGetLimitedReplayResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List stages { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3)] - public CMsgLimitedFormat format { get; set; } - - [global::ProtoBuf.ProtoContract()] - public partial class LimitedStage : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint stage_id - { - get => __pbn__stage_id.GetValueOrDefault(); - set => __pbn__stage_id = value; - } - public bool ShouldSerializestage_id() => __pbn__stage_id != null; - public void Resetstage_id() => __pbn__stage_id = null; - private uint? __pbn__stage_id; - - [global::ProtoBuf.ProtoMember(2)] - public byte[] choice_set - { - get => __pbn__choice_set; - set => __pbn__choice_set = value; - } - public bool ShouldSerializechoice_set() => __pbn__choice_set != null; - public void Resetchoice_set() => __pbn__choice_set = null; - private byte[] __pbn__choice_set; - - [global::ProtoBuf.ProtoMember(3)] - public byte[] choices - { - get => __pbn__choices; - set => __pbn__choices = value; - } - public bool ShouldSerializechoices() => __pbn__choices != null; - public void Resetchoices() => __pbn__choices = null; - private byte[] __pbn__choices; - - } - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eInvalidPlayer = 4, - k_ePhaseNotReady = 5, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyRejoinChatRoom : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyRejoinChatRoomResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eNoChatRoom = 4, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToClientTourneyMembersMatchmaking : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2, IsPacked = true)] - public global::System.Collections.Generic.List accounts_in_mm { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyPayEntryFee : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint target_account_id - { - get => __pbn__target_account_id.GetValueOrDefault(); - set => __pbn__target_account_id = value; - } - public bool ShouldSerializetarget_account_id() => __pbn__target_account_id != null; - public void Resettarget_account_id() => __pbn__target_account_id = null; - private uint? __pbn__target_account_id; - - [global::ProtoBuf.ProtoMember(3)] - public global::System.Collections.Generic.List item_ids { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyPayEntryFeeResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eInvalidItem = 4, - k_eInvalidItemType = 5, - k_eItemAlreadyFilled = 6, - k_eInvalidTarget = 7, - k_eInvalidStage = 8, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyPlayerAbandon : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyPlayerAbandonResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eMissingPermissions = 3, - k_eUnableToAbandon = 4, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyChangeValue : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint phase_id - { - get => __pbn__phase_id.GetValueOrDefault(); - set => __pbn__phase_id = value; - } - public bool ShouldSerializephase_id() => __pbn__phase_id != null; - public void Resetphase_id() => __pbn__phase_id = null; - private uint? __pbn__phase_id; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue(EValueType.k_eGlobal_SeedStage)] - public EValueType value_type - { - get => __pbn__value_type ?? EValueType.k_eGlobal_SeedStage; - set => __pbn__value_type = value; - } - public bool ShouldSerializevalue_type() => __pbn__value_type != null; - public void Resetvalue_type() => __pbn__value_type = null; - private EValueType? __pbn__value_type; - - [global::ProtoBuf.ProtoMember(4)] - public uint int_value - { - get => __pbn__int_value.GetValueOrDefault(); - set => __pbn__int_value = value; - } - public bool ShouldSerializeint_value() => __pbn__int_value != null; - public void Resetint_value() => __pbn__int_value = null; - private uint? __pbn__int_value; - - [global::ProtoBuf.ProtoContract()] - public enum EValueType - { - k_eGlobal_SeedStage = 1, - k_eGlobal_OpenSpectating = 2, - k_eGlobal_TimerMode = 3, - k_ePhase_MaxPlayers = 50, - k_ePhase_EditStage = 51, - k_eSwiss_NumRounds = 100, - k_eSwiss_Matches = 101, - k_eBracket_BestOf = 150, - k_eBracket_FinalsBestOf = 151, - k_eFreeForAll_MaxGames = 200, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyChangeValueResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eInvalidPhase = 3, - k_eInvalidValueType = 4, - k_eValueIsLocked = 5, - k_eInvalidValue = 6, - k_ePlayerMismatch = 8, - k_eMissingPermissions = 9, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyJoinOpenTourney : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint language - { - get => __pbn__language.GetValueOrDefault(); - set => __pbn__language = value; - } - public bool ShouldSerializelanguage() => __pbn__language != null; - public void Resetlanguage() => __pbn__language = null; - private uint? __pbn__language; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string community_key - { - get => __pbn__community_key ?? ""; - set => __pbn__community_key = value; - } - public bool ShouldSerializecommunity_key() => __pbn__community_key != null; - public void Resetcommunity_key() => __pbn__community_key = null; - private string __pbn__community_key; - - [global::ProtoBuf.ProtoMember(3)] - public uint open_tourney_mode - { - get => __pbn__open_tourney_mode.GetValueOrDefault(); - set => __pbn__open_tourney_mode = value; - } - public bool ShouldSerializeopen_tourney_mode() => __pbn__open_tourney_mode != null; - public void Resetopen_tourney_mode() => __pbn__open_tourney_mode = null; - private uint? __pbn__open_tourney_mode; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgClientToGCTourneyJoinOpenTourneyResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(EResponse.k_eInternalError)] - public EResponse result - { - get => __pbn__result ?? EResponse.k_eInternalError; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private EResponse? __pbn__result; - - [global::ProtoBuf.ProtoMember(2)] - public ulong joined_tourney_id - { - get => __pbn__joined_tourney_id.GetValueOrDefault(); - set => __pbn__joined_tourney_id = value; - } - public bool ShouldSerializejoined_tourney_id() => __pbn__joined_tourney_id != null; - public void Resetjoined_tourney_id() => __pbn__joined_tourney_id = null; - private ulong? __pbn__joined_tourney_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint cooldown_time_after - { - get => __pbn__cooldown_time_after.GetValueOrDefault(); - set => __pbn__cooldown_time_after = value; - } - public bool ShouldSerializecooldown_time_after() => __pbn__cooldown_time_after != null; - public void Resetcooldown_time_after() => __pbn__cooldown_time_after = null; - private uint? __pbn__cooldown_time_after; - - [global::ProtoBuf.ProtoContract()] - public enum EResponse - { - k_eInternalError = 0, - k_eSuccess = 1, - k_eDisabled = 2, - k_eInvalidMode = 3, - k_eInvalidRequest = 4, - k_eTooBusy = 5, - k_eRateLimited = 6, - k_eInTooManyOpenAlready = 7, - k_eInTooManyTotal = 8, - } - - } - - [global::ProtoBuf.ProtoContract()] - public enum EGCDCGClientMessages - { - k_EMsgClientToGCStartMatchmaking = 9010, - k_EMsgClientToGCStartMatchmakingResponse = 9011, - k_EMsgClientToGCStopMatchmaking = 9012, - k_EMsgClientToGCStopMatchmakingResponse = 9013, - k_EMsgGCToClientMatchmakingStopped = 9014, - k_EMsgClientToGCLeaveLobby = 9015, - k_EMsgClientToGCLeaveLobbyResponse = 9016, - k_EMsgGCToClientDefaultValidator = 9019, - k_EMsgClientToGCJoinChatChannel = 9023, - k_EMsgClientToGCJoinChatChannelResponse = 9024, - k_EMsgClientToGCSendChatMessage = 9025, - k_EMsgGCToClientChatMessage = 9026, - k_EMsgGCToClientUserJoinedChatChannel = 9027, - k_EMsgClientToGCLeaveChatChannel = 9028, - k_EMsgGCToClientChatChannelJoined = 9029, - k_EMsgClientToGCIsInMatchmaking = 9030, - k_EMsgClientToGCIsInMatchmakingResponse = 9031, - k_EMsgClientToGCOpenPackItem = 9036, - k_EMsgClientToGCOpenPackItemResponse = 9037, - k_EMsgClientToGCLeaveChatChannelByKey = 9040, - k_EMsgClientToGCSendChatMessageRoll = 9041, - k_EMsgClientToGCGetMatchHistory = 9044, - k_EMsgClientToGCGetMatchHistoryResponse = 9045, - k_EMsgClientToGCGetMatchDetails = 9046, - k_EMsgClientToGCGetMatchDetailsResponse = 9047, - k_EMsgClientToGCLimitedGrant = 9048, - k_EMsgClientToGCLimitedGrantResponse = 9049, - k_EMsgClientToGCLimitedGrantChoice = 9050, - k_EMsgClientToGCLimitedGrantChoiceResponse = 9051, - k_EMsgClientToGCLimitedGetFormat = 9052, - k_EMsgClientToGCLimitedGetFormatResponse = 9053, - k_EMsgClientToGCGetAIVsAIMatchConfig = 9076, - k_EMsgClientToGCGetAIVsAIMatchConfigResponse = 9077, - k_EMsgClientToGCGetAIVsAIMatchComplete = 9078, - k_EMsgGCToClientGlobalPhantomLeagues = 9081, - k_EMsgGCToClientMatchmakingStatus = 9096, - k_EMsgClientToGCJoinGauntlet = 9097, - k_EMsgClientToGCJoinGauntletResponse = 9098, - k_EMsgClientToGCAbandonGauntlet = 9099, - k_EMsgClientToGCAbandonGauntletResponse = 9100, - k_EMsgGCToClientAvailableGauntlets = 9101, - k_EMsgClientToGCGetGauntletMatches = 9102, - k_EMsgClientToGCGetGauntletMatchesResponse = 9103, - k_EMsgClientToGCRegisterGauntletDeck = 9104, - k_EMsgClientToGCRegisterGauntletDeckResponse = 9105, - k_EMsgClientToGCAIGauntletResult = 9106, - k_EMsgClientToGCAIGauntletResultResponse = 9107, - k_EMsgClientToGCPrivateLobbyCreate = 9110, - k_EMsgClientToGCPrivateLobbyCreateResponse = 9111, - k_EMsgClientToGCPrivateLobbyLeave = 9112, - k_EMsgClientToGCPrivateLobbyLeaveResponse = 9113, - k_EMsgClientToGCPrivateLobbyJoin = 9114, - k_EMsgClientToGCPrivateLobbyJoinResponse = 9115, - k_EMsgClientToGCPrivateLobbyAction = 9116, - k_EMsgClientToGCPrivateLobbyActionResponse = 9117, - k_EMsgClientToGCPrivateLobbyStartMatch = 9118, - k_EMsgClientToGCPrivateLobbyStartMatchResponse = 9119, - k_EMsgClientToGCPrivateLobbyInviteUser = 9120, - k_EMsgClientToGCPrivateLobbyInviteUserResponse = 9121, - k_EMsgClientToGCPrivateLobbyChallenge = 9122, - k_EMsgClientToGCPrivateLobbyChallengeResponse = 9123, - k_EMsgGCToClientPrivateLobbyEvent = 9124, - k_EMsgClientToGCPrivateLobbyClientVersion = 9125, - k_EMsgGCToClientSDRTicket = 9126, - k_EMsgClientToGCReplacementSDRTicket = 9127, - k_EMsgClientToGCReplacementSDRTicketResponse = 9128, - k_EMsgClientToGCPrivateLobbyJoinChatRoom = 9129, - k_EMsgClientToGCPrivateLobbyJoinChatRoomResponse = 9130, - k_EMsgClientToGCMatchSignout = 9133, - k_EMsgClientToGCInitialGrantAck = 9134, - k_EMsgClientToGCRecycleCards = 9135, - k_EMsgClientToGCRecycleCardsResponse = 9136, - k_EMsgClientToGCSetPlayerBadge = 9137, - k_EMsgClientToGCTourneyGetInfo = 9500, - k_EMsgClientToGCTourneyGetInfoResponse = 9501, - k_EMsgClientToGCTourneyUnsubscribe = 9502, - k_EMsgGCToClientTourneyUpdated = 9503, - k_EMsgGCToClientTourneySeriesMatchReady = 9506, - k_EMsgGCToClientTourneySeriesMatchNotReady = 9507, - k_EMsgClientToGCCreateTourney = 9508, - k_EMsgClientToGCCreateTourneyResponse = 9509, - k_EMsgClientToGCTourneyAcceptInvite = 9512, - k_EMsgClientToGCTourneyAcceptInviteResponse = 9513, - k_EMsgClientToGCTourneyRejectInvite = 9514, - k_EMsgClientToGCTourneyRejectInviteResponse = 9515, - k_EMsgClientToGCTourneyRevokeInvite = 9516, - k_EMsgClientToGCTourneyRevokeInviteResponse = 9517, - k_EMsgClientToGCTourneyAdminSwitchStage = 9518, - k_EMsgClientToGCTourneyAdminSwitchStageResponse = 9519, - k_EMsgClientToGCTourneyAdminKick = 9520, - k_EMsgClientToGCTourneyAdminKickResponse = 9521, - k_EMsgClientToGCTourneyAdminGrantWin = 9522, - k_EMsgClientToGCTourneyAdminGrantWinResponse = 9523, - k_EMsgClientToGCTourneyAdminChangeRights = 9524, - k_EMsgClientToGCTourneyAdminChangeRightsResponse = 9525, - k_EMsgClientToGCTourneyRegisterDeck = 9526, - k_EMsgClientToGCTourneyRegisterDeckResponse = 9527, - k_EMsgClientToGCTourneyUserLeave = 9528, - k_EMsgClientToGCTourneyUserLeaveResponse = 9529, - k_EMsgClientToGCTourneyRegisterSharedDeck = 9530, - k_EMsgClientToGCTourneyRegisterSharedDeckResponse = 9531, - k_EMsgClientToGCTourneyGetRegisteredDecks = 9532, - k_EMsgClientToGCTourneyGetRegisteredDecksResponse = 9533, - k_EMsgClientToGCTourneyCreateOpenInvite = 9536, - k_EMsgClientToGCTourneyCreateOpenInviteResponse = 9537, - k_EMsgClientToGCTourneyRevokeOpenInvite = 9538, - k_EMsgClientToGCTourneyRevokeOpenInviteResponse = 9539, - k_EMsgClientToGCTourneyGetOpenInvites = 9540, - k_EMsgClientToGCTourneyGetOpenInvitesResponse = 9541, - k_EMsgClientToGCTourneyAdminSwitchPhaseStage = 9542, - k_EMsgClientToGCTourneyAdminSwitchPhaseStageResponse = 9543, - k_EMsgClientToGCTourneyGetOverview = 9544, - k_EMsgClientToGCTourneyGetOverviewResponse = 9545, - k_EMsgClientToGCTourneySetStatus = 9546, - k_EMsgClientToGCTourneySetStatusResponse = 9547, - k_EMsgClientToGCTourneyAddPhase = 9548, - k_EMsgClientToGCTourneyAddPhaseResponse = 9549, - k_EMsgClientToGCTourneyRemovePhase = 9550, - k_EMsgClientToGCTourneyRemovePhaseResponse = 9551, - k_EMsgClientToGCTourneySpectateMatch = 9552, - k_EMsgClientToGCTourneySpectateMatchResponse = 9553, - k_EMsgClientToGCTourneyInviteList = 9554, - k_EMsgClientToGCTourneyInviteListResponse = 9555, - k_EMsgClientToGCTourneyAdminSetSeedValues = 9556, - k_EMsgClientToGCTourneyAdminSetSeedValuesResponse = 9557, - k_EMsgClientToGCTourneyEditStageSwapPlayers = 9558, - k_EMsgClientToGCTourneyEditStageSwapPlayersResponse = 9559, - k_EMsgClientToGCTourneyGetLimitedReplay = 9560, - k_EMsgClientToGCTourneyGetLimitedReplayResponse = 9561, - k_EMsgClientToGCTourneyRejoinChatRoom = 9562, - k_EMsgClientToGCTourneyRejoinChatRoomResponse = 9563, - k_EMsgGCToClientTourneyMembersMatchmaking = 9564, - k_EMsgClientToGCTourneyPayEntryFee = 9565, - k_EMsgClientToGCTourneyPayEntryFeeResponse = 9566, - k_EMsgClientToGCTourneyPlayerAbandon = 9567, - k_EMsgClientToGCTourneyPlayerAbandonResponse = 9568, - k_EMsgClientToGCTourneyChangeValue = 9569, - k_EMsgClientToGCTourneyChangeValueResponse = 9570, - k_EMsgClientToGCTourneyJoinOpenTourney = 9571, - k_EMsgClientToGCTourneyJoinOpenTourneyResponse = 9572, - } - - [global::ProtoBuf.ProtoContract()] - public enum EChatRoomType - { - k_EChatRoomType_Invalid = 0, - k_EChatRoomType_Match = 1, - k_EChatRoomType_PublicRegion = 2, - k_EChatRoomType_Developer = 3, - k_EChatRoomType_Custom = 4, - k_EChatRoomType_PrivateLobby = 5, - k_EChatRoomType_Client_Tab = 20, - k_EChatRoomType_Client_Whisper = 21, - } - - [global::ProtoBuf.ProtoContract()] - public enum EChatMessageAdditionalData - { - k_EChatMessageAdditionalData_None = 0, - k_EChatMessageAdditionalData_DiceRoll = 1, - } - -} - -#pragma warning restore CS0612, CS0618, CS1591, CS3021, IDE0079, IDE1006, RCS1036, RCS1057, RCS1085, RCS1192 -#endregion diff --git a/SteamKit2/SteamKit2/Base/Generated/GC/Artifact/MsgGCCommon.cs b/SteamKit2/SteamKit2/Base/Generated/GC/Artifact/MsgGCCommon.cs deleted file mode 100644 index 01e5e24f1..000000000 --- a/SteamKit2/SteamKit2/Base/Generated/GC/Artifact/MsgGCCommon.cs +++ /dev/null @@ -1,3506 +0,0 @@ -// -// This file was generated by a tool; you should avoid making direct changes. -// Consider using 'partial classes' to extend these types -// Input: dcg_gcmessages_common.proto -// - -#region Designer generated code -#pragma warning disable CS0612, CS0618, CS1591, CS3021, IDE0079, IDE1006, RCS1036, RCS1057, RCS1085, RCS1192 -namespace SteamKit2.GC.Artifact.Internal -{ - - [global::ProtoBuf.ProtoContract()] - public partial class CExtraMsgBlock : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint msg_type - { - get => __pbn__msg_type.GetValueOrDefault(); - set => __pbn__msg_type = value; - } - public bool ShouldSerializemsg_type() => __pbn__msg_type != null; - public void Resetmsg_type() => __pbn__msg_type = null; - private uint? __pbn__msg_type; - - [global::ProtoBuf.ProtoMember(2)] - public byte[] contents - { - get => __pbn__contents; - set => __pbn__contents = value; - } - public bool ShouldSerializecontents() => __pbn__contents != null; - public void Resetcontents() => __pbn__contents = null; - private byte[] __pbn__contents; - - [global::ProtoBuf.ProtoMember(3)] - public ulong msg_key - { - get => __pbn__msg_key.GetValueOrDefault(); - set => __pbn__msg_key = value; - } - public bool ShouldSerializemsg_key() => __pbn__msg_key != null; - public void Resetmsg_key() => __pbn__msg_key = null; - private ulong? __pbn__msg_key; - - [global::ProtoBuf.ProtoMember(4)] - public bool is_compressed - { - get => __pbn__is_compressed.GetValueOrDefault(); - set => __pbn__is_compressed = value; - } - public bool ShouldSerializeis_compressed() => __pbn__is_compressed != null; - public void Resetis_compressed() => __pbn__is_compressed = null; - private bool? __pbn__is_compressed; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CSODCGLobby : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List members { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List extra_messages { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong server_steam_id - { - get => __pbn__server_steam_id.GetValueOrDefault(); - set => __pbn__server_steam_id = value; - } - public bool ShouldSerializeserver_steam_id() => __pbn__server_steam_id != null; - public void Resetserver_steam_id() => __pbn__server_steam_id = null; - private ulong? __pbn__server_steam_id; - - [global::ProtoBuf.ProtoMember(5)] - public ulong lobby_id - { - get => __pbn__lobby_id.GetValueOrDefault(); - set => __pbn__lobby_id = value; - } - public bool ShouldSerializelobby_id() => __pbn__lobby_id != null; - public void Resetlobby_id() => __pbn__lobby_id = null; - private ulong? __pbn__lobby_id; - - [global::ProtoBuf.ProtoMember(6)] - public ulong match_id - { - get => __pbn__match_id.GetValueOrDefault(); - set => __pbn__match_id = value; - } - public bool ShouldSerializematch_id() => __pbn__match_id != null; - public void Resetmatch_id() => __pbn__match_id = null; - private ulong? __pbn__match_id; - - [global::ProtoBuf.ProtoMember(7)] - public uint gauntlet_id - { - get => __pbn__gauntlet_id.GetValueOrDefault(); - set => __pbn__gauntlet_id = value; - } - public bool ShouldSerializegauntlet_id() => __pbn__gauntlet_id != null; - public void Resetgauntlet_id() => __pbn__gauntlet_id = null; - private uint? __pbn__gauntlet_id; - - [global::ProtoBuf.ProtoMember(8)] - [global::System.ComponentModel.DefaultValue(ELobbyServerState.k_eLobbyServerState_Assign)] - public ELobbyServerState server_state - { - get => __pbn__server_state ?? ELobbyServerState.k_eLobbyServerState_Assign; - set => __pbn__server_state = value; - } - public bool ShouldSerializeserver_state() => __pbn__server_state != null; - public void Resetserver_state() => __pbn__server_state = null; - private ELobbyServerState? __pbn__server_state; - - [global::ProtoBuf.ProtoMember(9, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public uint replay_salt - { - get => __pbn__replay_salt.GetValueOrDefault(); - set => __pbn__replay_salt = value; - } - public bool ShouldSerializereplay_salt() => __pbn__replay_salt != null; - public void Resetreplay_salt() => __pbn__replay_salt = null; - private uint? __pbn__replay_salt; - - [global::ProtoBuf.ProtoMember(10)] - [global::System.ComponentModel.DefaultValue(EDCGMatchMode.k_EDCGMatchMode_Unranked)] - public EDCGMatchMode match_mode - { - get => __pbn__match_mode ?? EDCGMatchMode.k_EDCGMatchMode_Unranked; - set => __pbn__match_mode = value; - } - public bool ShouldSerializematch_mode() => __pbn__match_mode != null; - public void Resetmatch_mode() => __pbn__match_mode = null; - private EDCGMatchMode? __pbn__match_mode; - - [global::ProtoBuf.ProtoMember(11)] - public uint udp_connect_ip - { - get => __pbn__udp_connect_ip.GetValueOrDefault(); - set => __pbn__udp_connect_ip = value; - } - public bool ShouldSerializeudp_connect_ip() => __pbn__udp_connect_ip != null; - public void Resetudp_connect_ip() => __pbn__udp_connect_ip = null; - private uint? __pbn__udp_connect_ip; - - [global::ProtoBuf.ProtoMember(12)] - public uint udp_connect_port - { - get => __pbn__udp_connect_port.GetValueOrDefault(); - set => __pbn__udp_connect_port = value; - } - public bool ShouldSerializeudp_connect_port() => __pbn__udp_connect_port != null; - public void Resetudp_connect_port() => __pbn__udp_connect_port = null; - private uint? __pbn__udp_connect_port; - - [global::ProtoBuf.ProtoMember(13)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(14)] - public uint tourney_phase_id - { - get => __pbn__tourney_phase_id.GetValueOrDefault(); - set => __pbn__tourney_phase_id = value; - } - public bool ShouldSerializetourney_phase_id() => __pbn__tourney_phase_id != null; - public void Resettourney_phase_id() => __pbn__tourney_phase_id = null; - private uint? __pbn__tourney_phase_id; - - [global::ProtoBuf.ProtoMember(15)] - public uint tourney_series_id - { - get => __pbn__tourney_series_id.GetValueOrDefault(); - set => __pbn__tourney_series_id = value; - } - public bool ShouldSerializetourney_series_id() => __pbn__tourney_series_id != null; - public void Resettourney_series_id() => __pbn__tourney_series_id = null; - private uint? __pbn__tourney_series_id; - - [global::ProtoBuf.ProtoContract()] - public partial class GauntletInfo : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint wins - { - get => __pbn__wins.GetValueOrDefault(); - set => __pbn__wins = value; - } - public bool ShouldSerializewins() => __pbn__wins != null; - public void Resetwins() => __pbn__wins = null; - private uint? __pbn__wins; - - [global::ProtoBuf.ProtoMember(2)] - public uint losses - { - get => __pbn__losses.GetValueOrDefault(); - set => __pbn__losses = value; - } - public bool ShouldSerializelosses() => __pbn__losses != null; - public void Resetlosses() => __pbn__losses = null; - private uint? __pbn__losses; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class Member : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string persona_name - { - get => __pbn__persona_name ?? ""; - set => __pbn__persona_name = value; - } - public bool ShouldSerializepersona_name() => __pbn__persona_name != null; - public void Resetpersona_name() => __pbn__persona_name = null; - private string __pbn__persona_name; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue(EDCGLobbyTeam.k_EDCGLobbyTeam_Team0)] - public EDCGLobbyTeam team - { - get => __pbn__team ?? EDCGLobbyTeam.k_EDCGLobbyTeam_Team0; - set => __pbn__team = value; - } - public bool ShouldSerializeteam() => __pbn__team != null; - public void Resetteam() => __pbn__team = null; - private EDCGLobbyTeam? __pbn__team; - - [global::ProtoBuf.ProtoMember(4)] - public bool has_left - { - get => __pbn__has_left.GetValueOrDefault(); - set => __pbn__has_left = value; - } - public bool ShouldSerializehas_left() => __pbn__has_left != null; - public void Resethas_left() => __pbn__has_left = null; - private bool? __pbn__has_left; - - [global::ProtoBuf.ProtoMember(5)] - public bool is_anonymous - { - get => __pbn__is_anonymous.GetValueOrDefault(); - set => __pbn__is_anonymous = value; - } - public bool ShouldSerializeis_anonymous() => __pbn__is_anonymous != null; - public void Resetis_anonymous() => __pbn__is_anonymous = null; - private bool? __pbn__is_anonymous; - - [global::ProtoBuf.ProtoMember(6)] - public CSODCGLobby.GauntletInfo gauntlet_info { get; set; } - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CLobbyData_PostMatchSurvey : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List surveys { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class PlayerSurvey : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint question_id - { - get => __pbn__question_id.GetValueOrDefault(); - set => __pbn__question_id = value; - } - public bool ShouldSerializequestion_id() => __pbn__question_id != null; - public void Resetquestion_id() => __pbn__question_id = null; - private uint? __pbn__question_id; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CSOGameAccountClient : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint flags - { - get => __pbn__flags.GetValueOrDefault(); - set => __pbn__flags = value; - } - public bool ShouldSerializeflags() => __pbn__flags != null; - public void Resetflags() => __pbn__flags = null; - private uint? __pbn__flags; - - [global::ProtoBuf.ProtoMember(5)] - public uint initial_grant_ack_def - { - get => __pbn__initial_grant_ack_def.GetValueOrDefault(); - set => __pbn__initial_grant_ack_def = value; - } - public bool ShouldSerializeinitial_grant_ack_def() => __pbn__initial_grant_ack_def != null; - public void Resetinitial_grant_ack_def() => __pbn__initial_grant_ack_def = null; - private uint? __pbn__initial_grant_ack_def; - - [global::ProtoBuf.ProtoMember(6)] - public uint recycling_progress - { - get => __pbn__recycling_progress.GetValueOrDefault(); - set => __pbn__recycling_progress = value; - } - public bool ShouldSerializerecycling_progress() => __pbn__recycling_progress != null; - public void Resetrecycling_progress() => __pbn__recycling_progress = null; - private uint? __pbn__recycling_progress; - - [global::ProtoBuf.ProtoMember(7)] - public uint progress_level - { - get => __pbn__progress_level.GetValueOrDefault(); - set => __pbn__progress_level = value; - } - public bool ShouldSerializeprogress_level() => __pbn__progress_level != null; - public void Resetprogress_level() => __pbn__progress_level = null; - private uint? __pbn__progress_level; - - [global::ProtoBuf.ProtoMember(8)] - public uint progress_xp - { - get => __pbn__progress_xp.GetValueOrDefault(); - set => __pbn__progress_xp = value; - } - public bool ShouldSerializeprogress_xp() => __pbn__progress_xp != null; - public void Resetprogress_xp() => __pbn__progress_xp = null; - private uint? __pbn__progress_xp; - - [global::ProtoBuf.ProtoMember(9)] - public uint constructed_mmr_level - { - get => __pbn__constructed_mmr_level.GetValueOrDefault(); - set => __pbn__constructed_mmr_level = value; - } - public bool ShouldSerializeconstructed_mmr_level() => __pbn__constructed_mmr_level != null; - public void Resetconstructed_mmr_level() => __pbn__constructed_mmr_level = null; - private uint? __pbn__constructed_mmr_level; - - [global::ProtoBuf.ProtoMember(10)] - public uint last_win_bounus_time - { - get => __pbn__last_win_bounus_time.GetValueOrDefault(); - set => __pbn__last_win_bounus_time = value; - } - public bool ShouldSerializelast_win_bounus_time() => __pbn__last_win_bounus_time != null; - public void Resetlast_win_bounus_time() => __pbn__last_win_bounus_time = null; - private uint? __pbn__last_win_bounus_time; - - [global::ProtoBuf.ProtoMember(11)] - public uint match_win_streak - { - get => __pbn__match_win_streak.GetValueOrDefault(); - set => __pbn__match_win_streak = value; - } - public bool ShouldSerializematch_win_streak() => __pbn__match_win_streak != null; - public void Resetmatch_win_streak() => __pbn__match_win_streak = null; - private uint? __pbn__match_win_streak; - - [global::ProtoBuf.ProtoMember(12)] - public uint bonus_period_wins - { - get => __pbn__bonus_period_wins.GetValueOrDefault(); - set => __pbn__bonus_period_wins = value; - } - public bool ShouldSerializebonus_period_wins() => __pbn__bonus_period_wins != null; - public void Resetbonus_period_wins() => __pbn__bonus_period_wins = null; - private uint? __pbn__bonus_period_wins; - - [global::ProtoBuf.ProtoMember(13)] - public uint player_badge - { - get => __pbn__player_badge.GetValueOrDefault(); - set => __pbn__player_badge = value; - } - public bool ShouldSerializeplayer_badge() => __pbn__player_badge != null; - public void Resetplayer_badge() => __pbn__player_badge = null; - private uint? __pbn__player_badge; - - [global::ProtoBuf.ProtoMember(14)] - public uint draft_mmr_level - { - get => __pbn__draft_mmr_level.GetValueOrDefault(); - set => __pbn__draft_mmr_level = value; - } - public bool ShouldSerializedraft_mmr_level() => __pbn__draft_mmr_level != null; - public void Resetdraft_mmr_level() => __pbn__draft_mmr_level = null; - private uint? __pbn__draft_mmr_level; - - [global::ProtoBuf.ProtoContract()] - public enum EFlags - { - k_eDeveloper = 1, - k_eFreePlayer = 2, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CSOGauntlet : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint gauntlet_id - { - get => __pbn__gauntlet_id.GetValueOrDefault(); - set => __pbn__gauntlet_id = value; - } - public bool ShouldSerializegauntlet_id() => __pbn__gauntlet_id != null; - public void Resetgauntlet_id() => __pbn__gauntlet_id = null; - private uint? __pbn__gauntlet_id; - - [global::ProtoBuf.ProtoMember(3)] - public ulong active_lobby_id - { - get => __pbn__active_lobby_id.GetValueOrDefault(); - set => __pbn__active_lobby_id = value; - } - public bool ShouldSerializeactive_lobby_id() => __pbn__active_lobby_id != null; - public void Resetactive_lobby_id() => __pbn__active_lobby_id = null; - private ulong? __pbn__active_lobby_id; - - [global::ProtoBuf.ProtoMember(4)] - public uint abandoned_time - { - get => __pbn__abandoned_time.GetValueOrDefault(); - set => __pbn__abandoned_time = value; - } - public bool ShouldSerializeabandoned_time() => __pbn__abandoned_time != null; - public void Resetabandoned_time() => __pbn__abandoned_time = null; - private uint? __pbn__abandoned_time; - - [global::ProtoBuf.ProtoMember(5)] - public byte[] deck_bytes - { - get => __pbn__deck_bytes; - set => __pbn__deck_bytes = value; - } - public bool ShouldSerializedeck_bytes() => __pbn__deck_bytes != null; - public void Resetdeck_bytes() => __pbn__deck_bytes = null; - private byte[] __pbn__deck_bytes; - - [global::ProtoBuf.ProtoMember(9)] - public ulong gauntlet_instance - { - get => __pbn__gauntlet_instance.GetValueOrDefault(); - set => __pbn__gauntlet_instance = value; - } - public bool ShouldSerializegauntlet_instance() => __pbn__gauntlet_instance != null; - public void Resetgauntlet_instance() => __pbn__gauntlet_instance = null; - private ulong? __pbn__gauntlet_instance; - - [global::ProtoBuf.ProtoMember(10)] - public uint entry_type - { - get => __pbn__entry_type.GetValueOrDefault(); - set => __pbn__entry_type = value; - } - public bool ShouldSerializeentry_type() => __pbn__entry_type != null; - public void Resetentry_type() => __pbn__entry_type = null; - private uint? __pbn__entry_type; - - [global::ProtoBuf.ProtoMember(11)] - public ulong limited_instance - { - get => __pbn__limited_instance.GetValueOrDefault(); - set => __pbn__limited_instance = value; - } - public bool ShouldSerializelimited_instance() => __pbn__limited_instance != null; - public void Resetlimited_instance() => __pbn__limited_instance = null; - private ulong? __pbn__limited_instance; - - [global::ProtoBuf.ProtoMember(12)] - public uint wins - { - get => __pbn__wins.GetValueOrDefault(); - set => __pbn__wins = value; - } - public bool ShouldSerializewins() => __pbn__wins != null; - public void Resetwins() => __pbn__wins = null; - private uint? __pbn__wins; - - [global::ProtoBuf.ProtoMember(13)] - public uint losses - { - get => __pbn__losses.GetValueOrDefault(); - set => __pbn__losses = value; - } - public bool ShouldSerializelosses() => __pbn__losses != null; - public void Resetlosses() => __pbn__losses = null; - private uint? __pbn__losses; - - [global::ProtoBuf.ProtoMember(14)] - public ulong wins_mask - { - get => __pbn__wins_mask.GetValueOrDefault(); - set => __pbn__wins_mask = value; - } - public bool ShouldSerializewins_mask() => __pbn__wins_mask != null; - public void Resetwins_mask() => __pbn__wins_mask = null; - private ulong? __pbn__wins_mask; - - [global::ProtoBuf.ProtoMember(15)] - public bool select_random_deck - { - get => __pbn__select_random_deck.GetValueOrDefault(); - set => __pbn__select_random_deck = value; - } - public bool ShouldSerializeselect_random_deck() => __pbn__select_random_deck != null; - public void Resetselect_random_deck() => __pbn__select_random_deck = null; - private bool? __pbn__select_random_deck; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CSOPhantomItem : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public ulong limited_pool - { - get => __pbn__limited_pool.GetValueOrDefault(); - set => __pbn__limited_pool = value; - } - public bool ShouldSerializelimited_pool() => __pbn__limited_pool != null; - public void Resetlimited_pool() => __pbn__limited_pool = null; - private ulong? __pbn__limited_pool; - - [global::ProtoBuf.ProtoMember(3)] - public uint def_index - { - get => __pbn__def_index.GetValueOrDefault(); - set => __pbn__def_index = value; - } - public bool ShouldSerializedef_index() => __pbn__def_index != null; - public void Resetdef_index() => __pbn__def_index = null; - private uint? __pbn__def_index; - - [global::ProtoBuf.ProtoMember(4)] - public ulong phantom_id - { - get => __pbn__phantom_id.GetValueOrDefault(); - set => __pbn__phantom_id = value; - } - public bool ShouldSerializephantom_id() => __pbn__phantom_id != null; - public void Resetphantom_id() => __pbn__phantom_id = null; - private ulong? __pbn__phantom_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CSOCardAchievement : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint achievement_id - { - get => __pbn__achievement_id.GetValueOrDefault(); - set => __pbn__achievement_id = value; - } - public bool ShouldSerializeachievement_id() => __pbn__achievement_id != null; - public void Resetachievement_id() => __pbn__achievement_id = null; - private uint? __pbn__achievement_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint progress - { - get => __pbn__progress.GetValueOrDefault(); - set => __pbn__progress = value; - } - public bool ShouldSerializeprogress() => __pbn__progress != null; - public void Resetprogress() => __pbn__progress = null; - private uint? __pbn__progress; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CSOPlayerLimitedProgress : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public ulong limited_instance_id - { - get => __pbn__limited_instance_id.GetValueOrDefault(); - set => __pbn__limited_instance_id = value; - } - public bool ShouldSerializelimited_instance_id() => __pbn__limited_instance_id != null; - public void Resetlimited_instance_id() => __pbn__limited_instance_id = null; - private ulong? __pbn__limited_instance_id; - - [global::ProtoBuf.ProtoMember(3)] - public ulong limited_pool_id - { - get => __pbn__limited_pool_id.GetValueOrDefault(); - set => __pbn__limited_pool_id = value; - } - public bool ShouldSerializelimited_pool_id() => __pbn__limited_pool_id != null; - public void Resetlimited_pool_id() => __pbn__limited_pool_id = null; - private ulong? __pbn__limited_pool_id; - - [global::ProtoBuf.ProtoMember(4)] - public uint limited_format - { - get => __pbn__limited_format.GetValueOrDefault(); - set => __pbn__limited_format = value; - } - public bool ShouldSerializelimited_format() => __pbn__limited_format != null; - public void Resetlimited_format() => __pbn__limited_format = null; - private uint? __pbn__limited_format; - - [global::ProtoBuf.ProtoMember(5)] - public uint progress - { - get => __pbn__progress.GetValueOrDefault(); - set => __pbn__progress = value; - } - public bool ShouldSerializeprogress() => __pbn__progress != null; - public void Resetprogress() => __pbn__progress = null; - private uint? __pbn__progress; - - [global::ProtoBuf.ProtoMember(6)] - public uint flags - { - get => __pbn__flags.GetValueOrDefault(); - set => __pbn__flags = value; - } - public bool ShouldSerializeflags() => __pbn__flags != null; - public void Resetflags() => __pbn__flags = null; - private uint? __pbn__flags; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CSOTourneyMembership : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint player_status - { - get => __pbn__player_status.GetValueOrDefault(); - set => __pbn__player_status = value; - } - public bool ShouldSerializeplayer_status() => __pbn__player_status != null; - public void Resetplayer_status() => __pbn__player_status = null; - private uint? __pbn__player_status; - - [global::ProtoBuf.ProtoMember(4)] - [global::System.ComponentModel.DefaultValue(EStatus.k_eConfigure)] - public EStatus tourney_status - { - get => __pbn__tourney_status ?? EStatus.k_eConfigure; - set => __pbn__tourney_status = value; - } - public bool ShouldSerializetourney_status() => __pbn__tourney_status != null; - public void Resettourney_status() => __pbn__tourney_status = null; - private EStatus? __pbn__tourney_status; - - [global::ProtoBuf.ProtoMember(5)] - public uint joined_time - { - get => __pbn__joined_time.GetValueOrDefault(); - set => __pbn__joined_time = value; - } - public bool ShouldSerializejoined_time() => __pbn__joined_time != null; - public void Resetjoined_time() => __pbn__joined_time = null; - private uint? __pbn__joined_time; - - [global::ProtoBuf.ProtoMember(6)] - public uint open_tourney - { - get => __pbn__open_tourney.GetValueOrDefault(); - set => __pbn__open_tourney = value; - } - public bool ShouldSerializeopen_tourney() => __pbn__open_tourney != null; - public void Resetopen_tourney() => __pbn__open_tourney = null; - private uint? __pbn__open_tourney; - - [global::ProtoBuf.ProtoContract()] - public enum EStatus - { - k_eConfigure = 1, - k_eInvites = 2, - k_eSeeding = 3, - k_eLimited = 4, - k_eEditPhase = 5, - k_ePlaying = 6, - k_eWaiting = 7, - k_eClosed = 8, - k_eInvites_Registered = 9, - k_eLimited_Registered = 10, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CSOTourneyInvite : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(3)] - public bool is_full - { - get => __pbn__is_full.GetValueOrDefault(); - set => __pbn__is_full = value; - } - public bool ShouldSerializeis_full() => __pbn__is_full != null; - public void Resetis_full() => __pbn__is_full = null; - private bool? __pbn__is_full; - - [global::ProtoBuf.ProtoMember(4)] - public uint invited_by - { - get => __pbn__invited_by.GetValueOrDefault(); - set => __pbn__invited_by = value; - } - public bool ShouldSerializeinvited_by() => __pbn__invited_by != null; - public void Resetinvited_by() => __pbn__invited_by = null; - private uint? __pbn__invited_by; - - [global::ProtoBuf.ProtoMember(5)] - public uint rights_flags - { - get => __pbn__rights_flags.GetValueOrDefault(); - set => __pbn__rights_flags = value; - } - public bool ShouldSerializerights_flags() => __pbn__rights_flags != null; - public void Resetrights_flags() => __pbn__rights_flags = null; - private uint? __pbn__rights_flags; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgStartFindingMatchInfo : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint gauntlet_id - { - get => __pbn__gauntlet_id.GetValueOrDefault(); - set => __pbn__gauntlet_id = value; - } - public bool ShouldSerializegauntlet_id() => __pbn__gauntlet_id != null; - public void Resetgauntlet_id() => __pbn__gauntlet_id = null; - private uint? __pbn__gauntlet_id; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string server_search_key - { - get => __pbn__server_search_key ?? ""; - set => __pbn__server_search_key = value; - } - public bool ShouldSerializeserver_search_key() => __pbn__server_search_key != null; - public void Resetserver_search_key() => __pbn__server_search_key = null; - private string __pbn__server_search_key; - - [global::ProtoBuf.ProtoMember(3)] - public uint client_version - { - get => __pbn__client_version.GetValueOrDefault(); - set => __pbn__client_version = value; - } - public bool ShouldSerializeclient_version() => __pbn__client_version != null; - public void Resetclient_version() => __pbn__client_version = null; - private uint? __pbn__client_version; - - [global::ProtoBuf.ProtoMember(4)] - [global::System.ComponentModel.DefaultValue(EDCGMatchMode.k_EDCGMatchMode_Unranked)] - public EDCGMatchMode match_mode - { - get => __pbn__match_mode ?? EDCGMatchMode.k_EDCGMatchMode_Unranked; - set => __pbn__match_mode = value; - } - public bool ShouldSerializematch_mode() => __pbn__match_mode != null; - public void Resetmatch_mode() => __pbn__match_mode = null; - private EDCGMatchMode? __pbn__match_mode; - - [global::ProtoBuf.ProtoMember(5)] - public byte[] deck_code - { - get => __pbn__deck_code; - set => __pbn__deck_code = value; - } - public bool ShouldSerializedeck_code() => __pbn__deck_code != null; - public void Resetdeck_code() => __pbn__deck_code = null; - private byte[] __pbn__deck_code; - - [global::ProtoBuf.ProtoMember(7)] - public bool is_anonymous - { - get => __pbn__is_anonymous.GetValueOrDefault(); - set => __pbn__is_anonymous = value; - } - public bool ShouldSerializeis_anonymous() => __pbn__is_anonymous != null; - public void Resetis_anonymous() => __pbn__is_anonymous = null; - private bool? __pbn__is_anonymous; - - [global::ProtoBuf.ProtoMember(8)] - public byte[] collection_code - { - get => __pbn__collection_code; - set => __pbn__collection_code = value; - } - public bool ShouldSerializecollection_code() => __pbn__collection_code != null; - public void Resetcollection_code() => __pbn__collection_code = null; - private byte[] __pbn__collection_code; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgDCGCombatLogEntry : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(DCG_COMBATLOG_TYPES.DCG_COMBATLOG_INVALID)] - public DCG_COMBATLOG_TYPES type - { - get => __pbn__type ?? DCG_COMBATLOG_TYPES.DCG_COMBATLOG_INVALID; - set => __pbn__type = value; - } - public bool ShouldSerializetype() => __pbn__type != null; - public void Resettype() => __pbn__type = null; - private DCG_COMBATLOG_TYPES? __pbn__type; - - [global::ProtoBuf.ProtoMember(2)] - public uint target_card_id - { - get => __pbn__target_card_id.GetValueOrDefault(); - set => __pbn__target_card_id = value; - } - public bool ShouldSerializetarget_card_id() => __pbn__target_card_id != null; - public void Resettarget_card_id() => __pbn__target_card_id = null; - private uint? __pbn__target_card_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint target_object_id - { - get => __pbn__target_object_id.GetValueOrDefault(); - set => __pbn__target_object_id = value; - } - public bool ShouldSerializetarget_object_id() => __pbn__target_object_id != null; - public void Resettarget_object_id() => __pbn__target_object_id = null; - private uint? __pbn__target_object_id; - - [global::ProtoBuf.ProtoMember(4)] - public uint target_owner - { - get => __pbn__target_owner.GetValueOrDefault(); - set => __pbn__target_owner = value; - } - public bool ShouldSerializetarget_owner() => __pbn__target_owner != null; - public void Resettarget_owner() => __pbn__target_owner = null; - private uint? __pbn__target_owner; - - [global::ProtoBuf.ProtoMember(5)] - public uint source_card_id - { - get => __pbn__source_card_id.GetValueOrDefault(); - set => __pbn__source_card_id = value; - } - public bool ShouldSerializesource_card_id() => __pbn__source_card_id != null; - public void Resetsource_card_id() => __pbn__source_card_id = null; - private uint? __pbn__source_card_id; - - [global::ProtoBuf.ProtoMember(6)] - public uint source_object_id - { - get => __pbn__source_object_id.GetValueOrDefault(); - set => __pbn__source_object_id = value; - } - public bool ShouldSerializesource_object_id() => __pbn__source_object_id != null; - public void Resetsource_object_id() => __pbn__source_object_id = null; - private uint? __pbn__source_object_id; - - [global::ProtoBuf.ProtoMember(7)] - public uint source_owner - { - get => __pbn__source_owner.GetValueOrDefault(); - set => __pbn__source_owner = value; - } - public bool ShouldSerializesource_owner() => __pbn__source_owner != null; - public void Resetsource_owner() => __pbn__source_owner = null; - private uint? __pbn__source_owner; - - [global::ProtoBuf.ProtoMember(8)] - public uint value - { - get => __pbn__value.GetValueOrDefault(); - set => __pbn__value = value; - } - public bool ShouldSerializevalue() => __pbn__value != null; - public void Resetvalue() => __pbn__value = null; - private uint? __pbn__value; - - [global::ProtoBuf.ProtoMember(9)] - public int target_attack - { - get => __pbn__target_attack.GetValueOrDefault(); - set => __pbn__target_attack = value; - } - public bool ShouldSerializetarget_attack() => __pbn__target_attack != null; - public void Resettarget_attack() => __pbn__target_attack = null; - private int? __pbn__target_attack; - - [global::ProtoBuf.ProtoMember(10)] - public int target_armor - { - get => __pbn__target_armor.GetValueOrDefault(); - set => __pbn__target_armor = value; - } - public bool ShouldSerializetarget_armor() => __pbn__target_armor != null; - public void Resettarget_armor() => __pbn__target_armor = null; - private int? __pbn__target_armor; - - [global::ProtoBuf.ProtoMember(11)] - public int target_health - { - get => __pbn__target_health.GetValueOrDefault(); - set => __pbn__target_health = value; - } - public bool ShouldSerializetarget_health() => __pbn__target_health != null; - public void Resettarget_health() => __pbn__target_health = null; - private int? __pbn__target_health; - - [global::ProtoBuf.ProtoMember(12)] - public int source_attack - { - get => __pbn__source_attack.GetValueOrDefault(); - set => __pbn__source_attack = value; - } - public bool ShouldSerializesource_attack() => __pbn__source_attack != null; - public void Resetsource_attack() => __pbn__source_attack = null; - private int? __pbn__source_attack; - - [global::ProtoBuf.ProtoMember(13)] - public int source_armor - { - get => __pbn__source_armor.GetValueOrDefault(); - set => __pbn__source_armor = value; - } - public bool ShouldSerializesource_armor() => __pbn__source_armor != null; - public void Resetsource_armor() => __pbn__source_armor = null; - private int? __pbn__source_armor; - - [global::ProtoBuf.ProtoMember(14)] - public int source_health - { - get => __pbn__source_health.GetValueOrDefault(); - set => __pbn__source_health = value; - } - public bool ShouldSerializesource_health() => __pbn__source_health != null; - public void Resetsource_health() => __pbn__source_health = null; - private int? __pbn__source_health; - - [global::ProtoBuf.ProtoMember(15)] - public uint turnstamp - { - get => __pbn__turnstamp.GetValueOrDefault(); - set => __pbn__turnstamp = value; - } - public bool ShouldSerializeturnstamp() => __pbn__turnstamp != null; - public void Resetturnstamp() => __pbn__turnstamp = null; - private uint? __pbn__turnstamp; - - [global::ProtoBuf.ProtoMember(16)] - public uint source_lane - { - get => __pbn__source_lane.GetValueOrDefault(); - set => __pbn__source_lane = value; - } - public bool ShouldSerializesource_lane() => __pbn__source_lane != null; - public void Resetsource_lane() => __pbn__source_lane = null; - private uint? __pbn__source_lane; - - [global::ProtoBuf.ProtoMember(17)] - public uint target_lane - { - get => __pbn__target_lane.GetValueOrDefault(); - set => __pbn__target_lane = value; - } - public bool ShouldSerializetarget_lane() => __pbn__target_lane != null; - public void Resettarget_lane() => __pbn__target_lane = null; - private uint? __pbn__target_lane; - - [global::ProtoBuf.ProtoMember(18)] - public uint source_parent_card_id - { - get => __pbn__source_parent_card_id.GetValueOrDefault(); - set => __pbn__source_parent_card_id = value; - } - public bool ShouldSerializesource_parent_card_id() => __pbn__source_parent_card_id != null; - public void Resetsource_parent_card_id() => __pbn__source_parent_card_id = null; - private uint? __pbn__source_parent_card_id; - - [global::ProtoBuf.ProtoMember(19)] - public uint source_parent_object_id - { - get => __pbn__source_parent_object_id.GetValueOrDefault(); - set => __pbn__source_parent_object_id = value; - } - public bool ShouldSerializesource_parent_object_id() => __pbn__source_parent_object_id != null; - public void Resetsource_parent_object_id() => __pbn__source_parent_object_id = null; - private uint? __pbn__source_parent_object_id; - - [global::ProtoBuf.ProtoMember(20)] - public uint modifier_type - { - get => __pbn__modifier_type.GetValueOrDefault(); - set => __pbn__modifier_type = value; - } - public bool ShouldSerializemodifier_type() => __pbn__modifier_type != null; - public void Resetmodifier_type() => __pbn__modifier_type = null; - private uint? __pbn__modifier_type; - - [global::ProtoBuf.ProtoMember(21)] - public bool piercing - { - get => __pbn__piercing.GetValueOrDefault(); - set => __pbn__piercing = value; - } - public bool ShouldSerializepiercing() => __pbn__piercing != null; - public void Resetpiercing() => __pbn__piercing = null; - private bool? __pbn__piercing; - - [global::ProtoBuf.ProtoMember(22)] - [global::System.ComponentModel.DefaultValue("")] - public string effect_name - { - get => __pbn__effect_name ?? ""; - set => __pbn__effect_name = value; - } - public bool ShouldSerializeeffect_name() => __pbn__effect_name != null; - public void Reseteffect_name() => __pbn__effect_name = null; - private string __pbn__effect_name; - - [global::ProtoBuf.ProtoMember(23)] - public uint target_combat_position - { - get => __pbn__target_combat_position.GetValueOrDefault(); - set => __pbn__target_combat_position = value; - } - public bool ShouldSerializetarget_combat_position() => __pbn__target_combat_position != null; - public void Resettarget_combat_position() => __pbn__target_combat_position = null; - private uint? __pbn__target_combat_position; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgDeckValidator : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint version - { - get => __pbn__version.GetValueOrDefault(); - set => __pbn__version = value; - } - public bool ShouldSerializeversion() => __pbn__version != null; - public void Resetversion() => __pbn__version = null; - private uint? __pbn__version; - - [global::ProtoBuf.ProtoMember(2)] - public bool must_own_cards - { - get => __pbn__must_own_cards.GetValueOrDefault(); - set => __pbn__must_own_cards = value; - } - public bool ShouldSerializemust_own_cards() => __pbn__must_own_cards != null; - public void Resetmust_own_cards() => __pbn__must_own_cards = null; - private bool? __pbn__must_own_cards; - - [global::ProtoBuf.ProtoMember(4)] - public global::System.Collections.Generic.List set_ids { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(5)] - public uint main_min - { - get => __pbn__main_min.GetValueOrDefault(); - set => __pbn__main_min = value; - } - public bool ShouldSerializemain_min() => __pbn__main_min != null; - public void Resetmain_min() => __pbn__main_min = null; - private uint? __pbn__main_min; - - [global::ProtoBuf.ProtoMember(6)] - public uint main_max - { - get => __pbn__main_max.GetValueOrDefault(); - set => __pbn__main_max = value; - } - public bool ShouldSerializemain_max() => __pbn__main_max != null; - public void Resetmain_max() => __pbn__main_max = null; - private uint? __pbn__main_max; - - [global::ProtoBuf.ProtoMember(7)] - public uint items_min - { - get => __pbn__items_min.GetValueOrDefault(); - set => __pbn__items_min = value; - } - public bool ShouldSerializeitems_min() => __pbn__items_min != null; - public void Resetitems_min() => __pbn__items_min = null; - private uint? __pbn__items_min; - - [global::ProtoBuf.ProtoMember(8)] - public uint items_max - { - get => __pbn__items_max.GetValueOrDefault(); - set => __pbn__items_max = value; - } - public bool ShouldSerializeitems_max() => __pbn__items_max != null; - public void Resetitems_max() => __pbn__items_max = null; - private uint? __pbn__items_max; - - [global::ProtoBuf.ProtoMember(9)] - public uint main_max_instances - { - get => __pbn__main_max_instances.GetValueOrDefault(); - set => __pbn__main_max_instances = value; - } - public bool ShouldSerializemain_max_instances() => __pbn__main_max_instances != null; - public void Resetmain_max_instances() => __pbn__main_max_instances = null; - private uint? __pbn__main_max_instances; - - [global::ProtoBuf.ProtoMember(10)] - public uint items_max_instances - { - get => __pbn__items_max_instances.GetValueOrDefault(); - set => __pbn__items_max_instances = value; - } - public bool ShouldSerializeitems_max_instances() => __pbn__items_max_instances != null; - public void Resetitems_max_instances() => __pbn__items_max_instances = null; - private uint? __pbn__items_max_instances; - - [global::ProtoBuf.ProtoMember(11)] - public uint hero_max_instances - { - get => __pbn__hero_max_instances.GetValueOrDefault(); - set => __pbn__hero_max_instances = value; - } - public bool ShouldSerializehero_max_instances() => __pbn__hero_max_instances != null; - public void Resethero_max_instances() => __pbn__hero_max_instances = null; - private uint? __pbn__hero_max_instances; - - [global::ProtoBuf.ProtoMember(12)] - public global::System.Collections.Generic.List card_limits { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(13)] - public global::System.Collections.Generic.List required_cards { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(14)] - public bool include_active_sets - { - get => __pbn__include_active_sets.GetValueOrDefault(); - set => __pbn__include_active_sets = value; - } - public bool ShouldSerializeinclude_active_sets() => __pbn__include_active_sets != null; - public void Resetinclude_active_sets() => __pbn__include_active_sets = null; - private bool? __pbn__include_active_sets; - - [global::ProtoBuf.ProtoMember(15)] - public global::System.Collections.Generic.List blocked_rarities { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(16)] - public uint min_deck_colors - { - get => __pbn__min_deck_colors.GetValueOrDefault(); - set => __pbn__min_deck_colors = value; - } - public bool ShouldSerializemin_deck_colors() => __pbn__min_deck_colors != null; - public void Resetmin_deck_colors() => __pbn__min_deck_colors = null; - private uint? __pbn__min_deck_colors; - - [global::ProtoBuf.ProtoMember(17)] - public uint max_deck_colors - { - get => __pbn__max_deck_colors.GetValueOrDefault(); - set => __pbn__max_deck_colors = value; - } - public bool ShouldSerializemax_deck_colors() => __pbn__max_deck_colors != null; - public void Resetmax_deck_colors() => __pbn__max_deck_colors = null; - private uint? __pbn__max_deck_colors; - - [global::ProtoBuf.ProtoMember(18)] - public global::System.Collections.Generic.List blocked_colors { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(19)] - public bool random_decks - { - get => __pbn__random_decks.GetValueOrDefault(); - set => __pbn__random_decks = value; - } - public bool ShouldSerializerandom_decks() => __pbn__random_decks != null; - public void Resetrandom_decks() => __pbn__random_decks = null; - private bool? __pbn__random_decks; - - [global::ProtoBuf.ProtoMember(20)] - public global::System.Collections.Generic.List deck_choices { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class Deck : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public byte[] deck_bytes - { - get => __pbn__deck_bytes; - set => __pbn__deck_bytes = value; - } - public bool ShouldSerializedeck_bytes() => __pbn__deck_bytes != null; - public void Resetdeck_bytes() => __pbn__deck_bytes = null; - private byte[] __pbn__deck_bytes; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string deck_name - { - get => __pbn__deck_name ?? ""; - set => __pbn__deck_name = value; - } - public bool ShouldSerializedeck_name() => __pbn__deck_name != null; - public void Resetdeck_name() => __pbn__deck_name = null; - private string __pbn__deck_name; - - [global::ProtoBuf.ProtoMember(3)] - public uint deck_id - { - get => __pbn__deck_id.GetValueOrDefault(); - set => __pbn__deck_id = value; - } - public bool ShouldSerializedeck_id() => __pbn__deck_id != null; - public void Resetdeck_id() => __pbn__deck_id = null; - private uint? __pbn__deck_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CardLimit : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint card_id - { - get => __pbn__card_id.GetValueOrDefault(); - set => __pbn__card_id = value; - } - public bool ShouldSerializecard_id() => __pbn__card_id != null; - public void Resetcard_id() => __pbn__card_id = null; - private uint? __pbn__card_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint card_count - { - get => __pbn__card_count.GetValueOrDefault(); - set => __pbn__card_count = value; - } - public bool ShouldSerializecard_count() => __pbn__card_count != null; - public void Resetcard_count() => __pbn__card_count = null; - private uint? __pbn__card_count; - - } - - [global::ProtoBuf.ProtoContract()] - public enum ERarity - { - eRarity_Common = 1, - eRarity_Uncommon = 2, - eRarity_Rare = 3, - } - - [global::ProtoBuf.ProtoContract()] - public enum EColor - { - eColor_Red = 0, - eColor_Blue = 1, - eColor_Green = 2, - eColor_Black = 3, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgAnyToGCReportAsserts : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint version - { - get => __pbn__version.GetValueOrDefault(); - set => __pbn__version = value; - } - public bool ShouldSerializeversion() => __pbn__version != null; - public void Resetversion() => __pbn__version = null; - private uint? __pbn__version; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List asserts { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class TrackedAssert : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue("")] - public string filename - { - get => __pbn__filename ?? ""; - set => __pbn__filename = value; - } - public bool ShouldSerializefilename() => __pbn__filename != null; - public void Resetfilename() => __pbn__filename = null; - private string __pbn__filename; - - [global::ProtoBuf.ProtoMember(2)] - public uint line_number - { - get => __pbn__line_number.GetValueOrDefault(); - set => __pbn__line_number = value; - } - public bool ShouldSerializeline_number() => __pbn__line_number != null; - public void Resetline_number() => __pbn__line_number = null; - private uint? __pbn__line_number; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue("")] - public string sample_msg - { - get => __pbn__sample_msg ?? ""; - set => __pbn__sample_msg = value; - } - public bool ShouldSerializesample_msg() => __pbn__sample_msg != null; - public void Resetsample_msg() => __pbn__sample_msg = null; - private string __pbn__sample_msg; - - [global::ProtoBuf.ProtoMember(4)] - [global::System.ComponentModel.DefaultValue("")] - public string sample_stack - { - get => __pbn__sample_stack ?? ""; - set => __pbn__sample_stack = value; - } - public bool ShouldSerializesample_stack() => __pbn__sample_stack != null; - public void Resetsample_stack() => __pbn__sample_stack = null; - private string __pbn__sample_stack; - - [global::ProtoBuf.ProtoMember(5)] - public uint times_fired - { - get => __pbn__times_fired.GetValueOrDefault(); - set => __pbn__times_fired = value; - } - public bool ShouldSerializetimes_fired() => __pbn__times_fired != null; - public void Resettimes_fired() => __pbn__times_fired = null; - private uint? __pbn__times_fired; - - [global::ProtoBuf.ProtoMember(6)] - [global::System.ComponentModel.DefaultValue("")] - public string function_name - { - get => __pbn__function_name ?? ""; - set => __pbn__function_name = value; - } - public bool ShouldSerializefunction_name() => __pbn__function_name != null; - public void Resetfunction_name() => __pbn__function_name = null; - private string __pbn__function_name; - - [global::ProtoBuf.ProtoMember(7)] - [global::System.ComponentModel.DefaultValue("")] - public string condition - { - get => __pbn__condition ?? ""; - set => __pbn__condition = value; - } - public bool ShouldSerializecondition() => __pbn__condition != null; - public void Resetcondition() => __pbn__condition = null; - private string __pbn__condition; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgAnyToGCReportAssertsResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public bool success - { - get => __pbn__success.GetValueOrDefault(); - set => __pbn__success = value; - } - public bool ShouldSerializesuccess() => __pbn__success != null; - public void Resetsuccess() => __pbn__success = null; - private bool? __pbn__success; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGauntletConfig : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint gauntlet_id - { - get => __pbn__gauntlet_id.GetValueOrDefault(); - set => __pbn__gauntlet_id = value; - } - public bool ShouldSerializegauntlet_id() => __pbn__gauntlet_id != null; - public void Resetgauntlet_id() => __pbn__gauntlet_id = null; - private uint? __pbn__gauntlet_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint activate_time - { - get => __pbn__activate_time.GetValueOrDefault(); - set => __pbn__activate_time = value; - } - public bool ShouldSerializeactivate_time() => __pbn__activate_time != null; - public void Resetactivate_time() => __pbn__activate_time = null; - private uint? __pbn__activate_time; - - [global::ProtoBuf.ProtoMember(3)] - public uint max_wins - { - get => __pbn__max_wins.GetValueOrDefault(); - set => __pbn__max_wins = value; - } - public bool ShouldSerializemax_wins() => __pbn__max_wins != null; - public void Resetmax_wins() => __pbn__max_wins = null; - private uint? __pbn__max_wins; - - [global::ProtoBuf.ProtoMember(4)] - public uint max_losses - { - get => __pbn__max_losses.GetValueOrDefault(); - set => __pbn__max_losses = value; - } - public bool ShouldSerializemax_losses() => __pbn__max_losses != null; - public void Resetmax_losses() => __pbn__max_losses = null; - private uint? __pbn__max_losses; - - [global::ProtoBuf.ProtoMember(5)] - public uint max_games - { - get => __pbn__max_games.GetValueOrDefault(); - set => __pbn__max_games = value; - } - public bool ShouldSerializemax_games() => __pbn__max_games != null; - public void Resetmax_games() => __pbn__max_games = null; - private uint? __pbn__max_games; - - [global::ProtoBuf.ProtoMember(7)] - public global::System.Collections.Generic.List rewards { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(8)] - public CMsgDeckValidator validator { get; set; } - - [global::ProtoBuf.ProtoMember(10)] - public bool register_deck - { - get => __pbn__register_deck.GetValueOrDefault(); - set => __pbn__register_deck = value; - } - public bool ShouldSerializeregister_deck() => __pbn__register_deck != null; - public void Resetregister_deck() => __pbn__register_deck = null; - private bool? __pbn__register_deck; - - [global::ProtoBuf.ProtoMember(12)] - public bool auto_populate_deck - { - get => __pbn__auto_populate_deck.GetValueOrDefault(); - set => __pbn__auto_populate_deck = value; - } - public bool ShouldSerializeauto_populate_deck() => __pbn__auto_populate_deck != null; - public void Resetauto_populate_deck() => __pbn__auto_populate_deck = null; - private bool? __pbn__auto_populate_deck; - - [global::ProtoBuf.ProtoMember(14)] - public bool can_modify_deck - { - get => __pbn__can_modify_deck.GetValueOrDefault(); - set => __pbn__can_modify_deck = value; - } - public bool ShouldSerializecan_modify_deck() => __pbn__can_modify_deck != null; - public void Resetcan_modify_deck() => __pbn__can_modify_deck = null; - private bool? __pbn__can_modify_deck; - - [global::ProtoBuf.ProtoMember(15)] - public bool is_active - { - get => __pbn__is_active.GetValueOrDefault(); - set => __pbn__is_active = value; - } - public bool ShouldSerializeis_active() => __pbn__is_active != null; - public void Resetis_active() => __pbn__is_active = null; - private bool? __pbn__is_active; - - [global::ProtoBuf.ProtoMember(16)] - public bool is_featured - { - get => __pbn__is_featured.GetValueOrDefault(); - set => __pbn__is_featured = value; - } - public bool ShouldSerializeis_featured() => __pbn__is_featured != null; - public void Resetis_featured() => __pbn__is_featured = null; - private bool? __pbn__is_featured; - - [global::ProtoBuf.ProtoMember(17)] - public global::System.Collections.Generic.List entry_types { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(18)] - public uint limited_format - { - get => __pbn__limited_format.GetValueOrDefault(); - set => __pbn__limited_format = value; - } - public bool ShouldSerializelimited_format() => __pbn__limited_format != null; - public void Resetlimited_format() => __pbn__limited_format = null; - private uint? __pbn__limited_format; - - [global::ProtoBuf.ProtoMember(19)] - public uint expiration_time - { - get => __pbn__expiration_time.GetValueOrDefault(); - set => __pbn__expiration_time = value; - } - public bool ShouldSerializeexpiration_time() => __pbn__expiration_time != null; - public void Resetexpiration_time() => __pbn__expiration_time = null; - private uint? __pbn__expiration_time; - - [global::ProtoBuf.ProtoMember(20)] - public uint close_join_time - { - get => __pbn__close_join_time.GetValueOrDefault(); - set => __pbn__close_join_time = value; - } - public bool ShouldSerializeclose_join_time() => __pbn__close_join_time != null; - public void Resetclose_join_time() => __pbn__close_join_time = null; - private uint? __pbn__close_join_time; - - [global::ProtoBuf.ProtoMember(21)] - public uint close_mm_time - { - get => __pbn__close_mm_time.GetValueOrDefault(); - set => __pbn__close_mm_time = value; - } - public bool ShouldSerializeclose_mm_time() => __pbn__close_mm_time != null; - public void Resetclose_mm_time() => __pbn__close_mm_time = null; - private uint? __pbn__close_mm_time; - - [global::ProtoBuf.ProtoMember(22)] - public uint max_wins_trophy_id - { - get => __pbn__max_wins_trophy_id.GetValueOrDefault(); - set => __pbn__max_wins_trophy_id = value; - } - public bool ShouldSerializemax_wins_trophy_id() => __pbn__max_wins_trophy_id != null; - public void Resetmax_wins_trophy_id() => __pbn__max_wins_trophy_id = null; - private uint? __pbn__max_wins_trophy_id; - - [global::ProtoBuf.ProtoMember(23)] - public uint cooldown_time - { - get => __pbn__cooldown_time.GetValueOrDefault(); - set => __pbn__cooldown_time = value; - } - public bool ShouldSerializecooldown_time() => __pbn__cooldown_time != null; - public void Resetcooldown_time() => __pbn__cooldown_time = null; - private uint? __pbn__cooldown_time; - - [global::ProtoBuf.ProtoMember(24)] - public uint max_wins_per_deck_trophy_id - { - get => __pbn__max_wins_per_deck_trophy_id.GetValueOrDefault(); - set => __pbn__max_wins_per_deck_trophy_id = value; - } - public bool ShouldSerializemax_wins_per_deck_trophy_id() => __pbn__max_wins_per_deck_trophy_id != null; - public void Resetmax_wins_per_deck_trophy_id() => __pbn__max_wins_per_deck_trophy_id = null; - private uint? __pbn__max_wins_per_deck_trophy_id; - - [global::ProtoBuf.ProtoMember(25)] - public uint max_wins_random_mode_trophy_id - { - get => __pbn__max_wins_random_mode_trophy_id.GetValueOrDefault(); - set => __pbn__max_wins_random_mode_trophy_id = value; - } - public bool ShouldSerializemax_wins_random_mode_trophy_id() => __pbn__max_wins_random_mode_trophy_id != null; - public void Resetmax_wins_random_mode_trophy_id() => __pbn__max_wins_random_mode_trophy_id = null; - private uint? __pbn__max_wins_random_mode_trophy_id; - - [global::ProtoBuf.ProtoMember(26)] - public uint is_ai_gauntlet - { - get => __pbn__is_ai_gauntlet.GetValueOrDefault(); - set => __pbn__is_ai_gauntlet = value; - } - public bool ShouldSerializeis_ai_gauntlet() => __pbn__is_ai_gauntlet != null; - public void Resetis_ai_gauntlet() => __pbn__is_ai_gauntlet = null; - private uint? __pbn__is_ai_gauntlet; - - [global::ProtoBuf.ProtoMember(27)] - public global::System.Collections.Generic.List ai_validators { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(29)] - public global::System.Collections.Generic.List gauntlet_points_leaderboards { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(30)] - [global::System.ComponentModel.DefaultValue("")] - public string timer - { - get => __pbn__timer ?? ""; - set => __pbn__timer = value; - } - public bool ShouldSerializetimer() => __pbn__timer != null; - public void Resettimer() => __pbn__timer = null; - private string __pbn__timer; - - [global::ProtoBuf.ProtoContract()] - public partial class RewardTier : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List trophy_grant { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List item_grant { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3)] - public uint min_wins - { - get => __pbn__min_wins.GetValueOrDefault(); - set => __pbn__min_wins = value; - } - public bool ShouldSerializemin_wins() => __pbn__min_wins != null; - public void Resetmin_wins() => __pbn__min_wins = null; - private uint? __pbn__min_wins; - - [global::ProtoBuf.ProtoMember(4)] - public global::System.Collections.Generic.List loot_list_rolls { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class Grant : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint grant_id - { - get => __pbn__grant_id.GetValueOrDefault(); - set => __pbn__grant_id = value; - } - public bool ShouldSerializegrant_id() => __pbn__grant_id != null; - public void Resetgrant_id() => __pbn__grant_id = null; - private uint? __pbn__grant_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint quantity - { - get => __pbn__quantity.GetValueOrDefault(); - set => __pbn__quantity = value; - } - public bool ShouldSerializequantity() => __pbn__quantity != null; - public void Resetquantity() => __pbn__quantity = null; - private uint? __pbn__quantity; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class EntryType : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint entry_id - { - get => __pbn__entry_id.GetValueOrDefault(); - set => __pbn__entry_id = value; - } - public bool ShouldSerializeentry_id() => __pbn__entry_id != null; - public void Resetentry_id() => __pbn__entry_id = null; - private uint? __pbn__entry_id; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List item_costs { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3)] - public uint limited_format_overide - { - get => __pbn__limited_format_overide.GetValueOrDefault(); - set => __pbn__limited_format_overide = value; - } - public bool ShouldSerializelimited_format_overide() => __pbn__limited_format_overide != null; - public void Resetlimited_format_overide() => __pbn__limited_format_overide = null; - private uint? __pbn__limited_format_overide; - - [global::ProtoBuf.ProtoContract()] - public partial class ItemCost : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint def_index - { - get => __pbn__def_index.GetValueOrDefault(); - set => __pbn__def_index = value; - } - public bool ShouldSerializedef_index() => __pbn__def_index != null; - public void Resetdef_index() => __pbn__def_index = null; - private uint? __pbn__def_index; - - [global::ProtoBuf.ProtoMember(2)] - public uint quantity - { - get => __pbn__quantity.GetValueOrDefault(); - set => __pbn__quantity = value; - } - public bool ShouldSerializequantity() => __pbn__quantity != null; - public void Resetquantity() => __pbn__quantity = null; - private uint? __pbn__quantity; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GauntletPointsLeaderboard : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint expiration_time - { - get => __pbn__expiration_time.GetValueOrDefault(); - set => __pbn__expiration_time = value; - } - public bool ShouldSerializeexpiration_time() => __pbn__expiration_time != null; - public void Resetexpiration_time() => __pbn__expiration_time = null; - private uint? __pbn__expiration_time; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgLimitedFormat : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint limited_format_id - { - get => __pbn__limited_format_id.GetValueOrDefault(); - set => __pbn__limited_format_id = value; - } - public bool ShouldSerializelimited_format_id() => __pbn__limited_format_id != null; - public void Resetlimited_format_id() => __pbn__limited_format_id = null; - private uint? __pbn__limited_format_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint grant_stages - { - get => __pbn__grant_stages.GetValueOrDefault(); - set => __pbn__grant_stages = value; - } - public bool ShouldSerializegrant_stages() => __pbn__grant_stages != null; - public void Resetgrant_stages() => __pbn__grant_stages = null; - private uint? __pbn__grant_stages; - - [global::ProtoBuf.ProtoMember(3)] - public global::System.Collections.Generic.List grant_stage_info { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(4)] - public bool create_real_copies - { - get => __pbn__create_real_copies.GetValueOrDefault(); - set => __pbn__create_real_copies = value; - } - public bool ShouldSerializecreate_real_copies() => __pbn__create_real_copies != null; - public void Resetcreate_real_copies() => __pbn__create_real_copies = null; - private bool? __pbn__create_real_copies; - - [global::ProtoBuf.ProtoContract()] - public partial class LimitedStage : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(CMsgLimitedFormat.EGrantType.kGrant_Unknown)] - public CMsgLimitedFormat.EGrantType grant_type - { - get => __pbn__grant_type ?? CMsgLimitedFormat.EGrantType.kGrant_Unknown; - set => __pbn__grant_type = value; - } - public bool ShouldSerializegrant_type() => __pbn__grant_type != null; - public void Resetgrant_type() => __pbn__grant_type = null; - private CMsgLimitedFormat.EGrantType? __pbn__grant_type; - - [global::ProtoBuf.ProtoMember(2)] - public uint grant_count - { - get => __pbn__grant_count.GetValueOrDefault(); - set => __pbn__grant_count = value; - } - public bool ShouldSerializegrant_count() => __pbn__grant_count != null; - public void Resetgrant_count() => __pbn__grant_count = null; - private uint? __pbn__grant_count; - - [global::ProtoBuf.ProtoMember(3)] - public uint repeat_count - { - get => __pbn__repeat_count.GetValueOrDefault(); - set => __pbn__repeat_count = value; - } - public bool ShouldSerializerepeat_count() => __pbn__repeat_count != null; - public void Resetrepeat_count() => __pbn__repeat_count = null; - private uint? __pbn__repeat_count; - - [global::ProtoBuf.ProtoMember(4)] - [global::System.ComponentModel.DefaultValue("")] - public string display_msg - { - get => __pbn__display_msg ?? ""; - set => __pbn__display_msg = value; - } - public bool ShouldSerializedisplay_msg() => __pbn__display_msg != null; - public void Resetdisplay_msg() => __pbn__display_msg = null; - private string __pbn__display_msg; - - } - - [global::ProtoBuf.ProtoContract()] - public enum EGrantType - { - kGrant_Unknown = 0, - kGrant_Hero = 1, - kGrant_Card = 2, - kGrant_Item = 3, - kGrant_Pack = 4, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CSODCGPrivateLobby : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong private_lobby_id - { - get => __pbn__private_lobby_id.GetValueOrDefault(); - set => __pbn__private_lobby_id = value; - } - public bool ShouldSerializeprivate_lobby_id() => __pbn__private_lobby_id != null; - public void Resetprivate_lobby_id() => __pbn__private_lobby_id = null; - private ulong? __pbn__private_lobby_id; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List members { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3)] - public global::System.Collections.Generic.List invites { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(4)] - public global::System.Collections.Generic.List extra_messages { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(5)] - public bool in_match_making - { - get => __pbn__in_match_making.GetValueOrDefault(); - set => __pbn__in_match_making = value; - } - public bool ShouldSerializein_match_making() => __pbn__in_match_making != null; - public void Resetin_match_making() => __pbn__in_match_making = null; - private bool? __pbn__in_match_making; - - [global::ProtoBuf.ProtoMember(6)] - [global::System.ComponentModel.DefaultValue("")] - public string server_search_key - { - get => __pbn__server_search_key ?? ""; - set => __pbn__server_search_key = value; - } - public bool ShouldSerializeserver_search_key() => __pbn__server_search_key != null; - public void Resetserver_search_key() => __pbn__server_search_key = null; - private string __pbn__server_search_key; - - [global::ProtoBuf.ProtoMember(7)] - public bool are_decks_visible - { - get => __pbn__are_decks_visible.GetValueOrDefault(); - set => __pbn__are_decks_visible = value; - } - public bool ShouldSerializeare_decks_visible() => __pbn__are_decks_visible != null; - public void Resetare_decks_visible() => __pbn__are_decks_visible = null; - private bool? __pbn__are_decks_visible; - - [global::ProtoBuf.ProtoMember(8)] - public global::System.Collections.Generic.List match_list { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(9)] - [global::System.ComponentModel.DefaultValue(EDCGLobbyTimer.k_eDCGLobbyTimer_Unspecified)] - public EDCGLobbyTimer timer_mode - { - get => __pbn__timer_mode ?? EDCGLobbyTimer.k_eDCGLobbyTimer_Unspecified; - set => __pbn__timer_mode = value; - } - public bool ShouldSerializetimer_mode() => __pbn__timer_mode != null; - public void Resettimer_mode() => __pbn__timer_mode = null; - private EDCGLobbyTimer? __pbn__timer_mode; - - [global::ProtoBuf.ProtoMember(10, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong match_lobby_id - { - get => __pbn__match_lobby_id.GetValueOrDefault(); - set => __pbn__match_lobby_id = value; - } - public bool ShouldSerializematch_lobby_id() => __pbn__match_lobby_id != null; - public void Resetmatch_lobby_id() => __pbn__match_lobby_id = null; - private ulong? __pbn__match_lobby_id; - - [global::ProtoBuf.ProtoMember(11)] - public global::System.Collections.Generic.List shared_decks { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(12)] - public CMsgDeckValidator deck_validator { get; set; } - - [global::ProtoBuf.ProtoMember(15)] - public uint min_client_version - { - get => __pbn__min_client_version.GetValueOrDefault(); - set => __pbn__min_client_version = value; - } - public bool ShouldSerializemin_client_version() => __pbn__min_client_version != null; - public void Resetmin_client_version() => __pbn__min_client_version = null; - private uint? __pbn__min_client_version; - - [global::ProtoBuf.ProtoMember(16)] - public uint max_client_version - { - get => __pbn__max_client_version.GetValueOrDefault(); - set => __pbn__max_client_version = value; - } - public bool ShouldSerializemax_client_version() => __pbn__max_client_version != null; - public void Resetmax_client_version() => __pbn__max_client_version = null; - private uint? __pbn__max_client_version; - - [global::ProtoBuf.ProtoMember(17)] - public ulong steam_chat_group_id - { - get => __pbn__steam_chat_group_id.GetValueOrDefault(); - set => __pbn__steam_chat_group_id = value; - } - public bool ShouldSerializesteam_chat_group_id() => __pbn__steam_chat_group_id != null; - public void Resetsteam_chat_group_id() => __pbn__steam_chat_group_id = null; - private ulong? __pbn__steam_chat_group_id; - - [global::ProtoBuf.ProtoMember(18, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong lobby_salt - { - get => __pbn__lobby_salt.GetValueOrDefault(); - set => __pbn__lobby_salt = value; - } - public bool ShouldSerializelobby_salt() => __pbn__lobby_salt != null; - public void Resetlobby_salt() => __pbn__lobby_salt = null; - private ulong? __pbn__lobby_salt; - - [global::ProtoBuf.ProtoMember(19)] - public uint validator_id - { - get => __pbn__validator_id.GetValueOrDefault(); - set => __pbn__validator_id = value; - } - public bool ShouldSerializevalidator_id() => __pbn__validator_id != null; - public void Resetvalidator_id() => __pbn__validator_id = null; - private uint? __pbn__validator_id; - - [global::ProtoBuf.ProtoContract()] - public partial class Member : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string persona_name - { - get => __pbn__persona_name ?? ""; - set => __pbn__persona_name = value; - } - public bool ShouldSerializepersona_name() => __pbn__persona_name != null; - public void Resetpersona_name() => __pbn__persona_name = null; - private string __pbn__persona_name; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue(EDCGLobbyTeam.k_EDCGLobbyTeam_Team0)] - public EDCGLobbyTeam team - { - get => __pbn__team ?? EDCGLobbyTeam.k_EDCGLobbyTeam_Team0; - set => __pbn__team = value; - } - public bool ShouldSerializeteam() => __pbn__team != null; - public void Resetteam() => __pbn__team = null; - private EDCGLobbyTeam? __pbn__team; - - [global::ProtoBuf.ProtoMember(4)] - public bool is_ready - { - get => __pbn__is_ready.GetValueOrDefault(); - set => __pbn__is_ready = value; - } - public bool ShouldSerializeis_ready() => __pbn__is_ready != null; - public void Resetis_ready() => __pbn__is_ready = null; - private bool? __pbn__is_ready; - - [global::ProtoBuf.ProtoMember(5)] - public byte[] deck_bytes - { - get => __pbn__deck_bytes; - set => __pbn__deck_bytes = value; - } - public bool ShouldSerializedeck_bytes() => __pbn__deck_bytes != null; - public void Resetdeck_bytes() => __pbn__deck_bytes = null; - private byte[] __pbn__deck_bytes; - - [global::ProtoBuf.ProtoMember(7)] - public bool has_deck - { - get => __pbn__has_deck.GetValueOrDefault(); - set => __pbn__has_deck = value; - } - public bool ShouldSerializehas_deck() => __pbn__has_deck != null; - public void Resethas_deck() => __pbn__has_deck = null; - private bool? __pbn__has_deck; - - [global::ProtoBuf.ProtoMember(8)] - public uint client_version - { - get => __pbn__client_version.GetValueOrDefault(); - set => __pbn__client_version = value; - } - public bool ShouldSerializeclient_version() => __pbn__client_version != null; - public void Resetclient_version() => __pbn__client_version = null; - private uint? __pbn__client_version; - - [global::ProtoBuf.ProtoMember(9)] - public CMsgRegionPingTimesClient ping_times { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class Invite : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string persona_name - { - get => __pbn__persona_name ?? ""; - set => __pbn__persona_name = value; - } - public bool ShouldSerializepersona_name() => __pbn__persona_name != null; - public void Resetpersona_name() => __pbn__persona_name = null; - private string __pbn__persona_name; - - [global::ProtoBuf.ProtoMember(3)] - public uint invited_by - { - get => __pbn__invited_by.GetValueOrDefault(); - set => __pbn__invited_by = value; - } - public bool ShouldSerializeinvited_by() => __pbn__invited_by != null; - public void Resetinvited_by() => __pbn__invited_by = null; - private uint? __pbn__invited_by; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class SharedDeck : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint shared_by_account_id - { - get => __pbn__shared_by_account_id.GetValueOrDefault(); - set => __pbn__shared_by_account_id = value; - } - public bool ShouldSerializeshared_by_account_id() => __pbn__shared_by_account_id != null; - public void Resetshared_by_account_id() => __pbn__shared_by_account_id = null; - private uint? __pbn__shared_by_account_id; - - [global::ProtoBuf.ProtoMember(2)] - public byte[] deck_bytes - { - get => __pbn__deck_bytes; - set => __pbn__deck_bytes = value; - } - public bool ShouldSerializedeck_bytes() => __pbn__deck_bytes != null; - public void Resetdeck_bytes() => __pbn__deck_bytes = null; - private byte[] __pbn__deck_bytes; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue("")] - public string deck_name - { - get => __pbn__deck_name ?? ""; - set => __pbn__deck_name = value; - } - public bool ShouldSerializedeck_name() => __pbn__deck_name != null; - public void Resetdeck_name() => __pbn__deck_name = null; - private string __pbn__deck_name; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class Match : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong match_id - { - get => __pbn__match_id.GetValueOrDefault(); - set => __pbn__match_id = value; - } - public bool ShouldSerializematch_id() => __pbn__match_id != null; - public void Resetmatch_id() => __pbn__match_id = null; - private ulong? __pbn__match_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint winning_account_id - { - get => __pbn__winning_account_id.GetValueOrDefault(); - set => __pbn__winning_account_id = value; - } - public bool ShouldSerializewinning_account_id() => __pbn__winning_account_id != null; - public void Resetwinning_account_id() => __pbn__winning_account_id = null; - private uint? __pbn__winning_account_id; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CSODCGTourneyInvite : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(3)] - public bool is_full - { - get => __pbn__is_full.GetValueOrDefault(); - set => __pbn__is_full = value; - } - public bool ShouldSerializeis_full() => __pbn__is_full != null; - public void Resetis_full() => __pbn__is_full = null; - private bool? __pbn__is_full; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CSODCGTourneyNextMatch : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint phase_id - { - get => __pbn__phase_id.GetValueOrDefault(); - set => __pbn__phase_id = value; - } - public bool ShouldSerializephase_id() => __pbn__phase_id != null; - public void Resetphase_id() => __pbn__phase_id = null; - private uint? __pbn__phase_id; - - [global::ProtoBuf.ProtoMember(4)] - public uint series_id - { - get => __pbn__series_id.GetValueOrDefault(); - set => __pbn__series_id = value; - } - public bool ShouldSerializeseries_id() => __pbn__series_id != null; - public void Resetseries_id() => __pbn__series_id = null; - private uint? __pbn__series_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CDCGTourney : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue(EStage.k_eStage_Configure)] - public EStage stage - { - get => __pbn__stage ?? EStage.k_eStage_Configure; - set => __pbn__stage = value; - } - public bool ShouldSerializestage() => __pbn__stage != null; - public void Resetstage() => __pbn__stage = null; - private EStage? __pbn__stage; - - [global::ProtoBuf.ProtoMember(3)] - public global::System.Collections.Generic.List validators { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(4)] - public uint stage_time - { - get => __pbn__stage_time.GetValueOrDefault(); - set => __pbn__stage_time = value; - } - public bool ShouldSerializestage_time() => __pbn__stage_time != null; - public void Resetstage_time() => __pbn__stage_time = null; - private uint? __pbn__stage_time; - - [global::ProtoBuf.ProtoMember(5)] - public uint stats_salt - { - get => __pbn__stats_salt.GetValueOrDefault(); - set => __pbn__stats_salt = value; - } - public bool ShouldSerializestats_salt() => __pbn__stats_salt != null; - public void Resetstats_salt() => __pbn__stats_salt = null; - private uint? __pbn__stats_salt; - - [global::ProtoBuf.ProtoMember(6)] - [global::System.ComponentModel.DefaultValue("")] - public string tourney_msg - { - get => __pbn__tourney_msg ?? ""; - set => __pbn__tourney_msg = value; - } - public bool ShouldSerializetourney_msg() => __pbn__tourney_msg != null; - public void Resettourney_msg() => __pbn__tourney_msg = null; - private string __pbn__tourney_msg; - - [global::ProtoBuf.ProtoMember(7)] - [global::System.ComponentModel.DefaultValue("")] - public string tourney_status - { - get => __pbn__tourney_status ?? ""; - set => __pbn__tourney_status = value; - } - public bool ShouldSerializetourney_status() => __pbn__tourney_status != null; - public void Resettourney_status() => __pbn__tourney_status = null; - private string __pbn__tourney_status; - - [global::ProtoBuf.ProtoMember(8)] - public global::System.Collections.Generic.List phases { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(9)] - public global::System.Collections.Generic.List config_vals { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(10)] - public global::System.Collections.Generic.List invites { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(11)] - public global::System.Collections.Generic.List members { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(12)] - [global::System.ComponentModel.DefaultValue("")] - public string tourney_name - { - get => __pbn__tourney_name ?? ""; - set => __pbn__tourney_name = value; - } - public bool ShouldSerializetourney_name() => __pbn__tourney_name != null; - public void Resettourney_name() => __pbn__tourney_name = null; - private string __pbn__tourney_name; - - [global::ProtoBuf.ProtoMember(13)] - public global::System.Collections.Generic.List shared_decks { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(14)] - public uint created_by - { - get => __pbn__created_by.GetValueOrDefault(); - set => __pbn__created_by = value; - } - public bool ShouldSerializecreated_by() => __pbn__created_by != null; - public void Resetcreated_by() => __pbn__created_by = null; - private uint? __pbn__created_by; - - [global::ProtoBuf.ProtoMember(15)] - public uint auto_close_time - { - get => __pbn__auto_close_time.GetValueOrDefault(); - set => __pbn__auto_close_time = value; - } - public bool ShouldSerializeauto_close_time() => __pbn__auto_close_time != null; - public void Resetauto_close_time() => __pbn__auto_close_time = null; - private uint? __pbn__auto_close_time; - - [global::ProtoBuf.ProtoMember(16)] - public ulong steam_chat_room_id - { - get => __pbn__steam_chat_room_id.GetValueOrDefault(); - set => __pbn__steam_chat_room_id = value; - } - public bool ShouldSerializesteam_chat_room_id() => __pbn__steam_chat_room_id != null; - public void Resetsteam_chat_room_id() => __pbn__steam_chat_room_id = null; - private ulong? __pbn__steam_chat_room_id; - - [global::ProtoBuf.ProtoMember(17)] - public global::System.Collections.Generic.List paid_entry_items { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(18)] - public global::System.Collections.Generic.List entry_items { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(19)] - public uint created_time - { - get => __pbn__created_time.GetValueOrDefault(); - set => __pbn__created_time = value; - } - public bool ShouldSerializecreated_time() => __pbn__created_time != null; - public void Resetcreated_time() => __pbn__created_time = null; - private uint? __pbn__created_time; - - [global::ProtoBuf.ProtoContract()] - public partial class Match : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong match_id - { - get => __pbn__match_id.GetValueOrDefault(); - set => __pbn__match_id = value; - } - public bool ShouldSerializematch_id() => __pbn__match_id != null; - public void Resetmatch_id() => __pbn__match_id = null; - private ulong? __pbn__match_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class Series : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint series_id - { - get => __pbn__series_id.GetValueOrDefault(); - set => __pbn__series_id = value; - } - public bool ShouldSerializeseries_id() => __pbn__series_id != null; - public void Resetseries_id() => __pbn__series_id = null; - private uint? __pbn__series_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint account_1 - { - get => __pbn__account_1.GetValueOrDefault(); - set => __pbn__account_1 = value; - } - public bool ShouldSerializeaccount_1() => __pbn__account_1 != null; - public void Resetaccount_1() => __pbn__account_1 = null; - private uint? __pbn__account_1; - - [global::ProtoBuf.ProtoMember(3)] - public uint wins_1 - { - get => __pbn__wins_1.GetValueOrDefault(); - set => __pbn__wins_1 = value; - } - public bool ShouldSerializewins_1() => __pbn__wins_1 != null; - public void Resetwins_1() => __pbn__wins_1 = null; - private uint? __pbn__wins_1; - - [global::ProtoBuf.ProtoMember(4)] - public uint account_2 - { - get => __pbn__account_2.GetValueOrDefault(); - set => __pbn__account_2 = value; - } - public bool ShouldSerializeaccount_2() => __pbn__account_2 != null; - public void Resetaccount_2() => __pbn__account_2 = null; - private uint? __pbn__account_2; - - [global::ProtoBuf.ProtoMember(5)] - public uint wins_2 - { - get => __pbn__wins_2.GetValueOrDefault(); - set => __pbn__wins_2 = value; - } - public bool ShouldSerializewins_2() => __pbn__wins_2 != null; - public void Resetwins_2() => __pbn__wins_2 = null; - private uint? __pbn__wins_2; - - [global::ProtoBuf.ProtoMember(6)] - public uint ties - { - get => __pbn__ties.GetValueOrDefault(); - set => __pbn__ties = value; - } - public bool ShouldSerializeties() => __pbn__ties != null; - public void Resetties() => __pbn__ties = null; - private uint? __pbn__ties; - - [global::ProtoBuf.ProtoMember(7)] - public uint status - { - get => __pbn__status.GetValueOrDefault(); - set => __pbn__status = value; - } - public bool ShouldSerializestatus() => __pbn__status != null; - public void Resetstatus() => __pbn__status = null; - private uint? __pbn__status; - - [global::ProtoBuf.ProtoMember(8)] - public global::System.Collections.Generic.List matches { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(9, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong lobby_id - { - get => __pbn__lobby_id.GetValueOrDefault(); - set => __pbn__lobby_id = value; - } - public bool ShouldSerializelobby_id() => __pbn__lobby_id != null; - public void Resetlobby_id() => __pbn__lobby_id = null; - private ulong? __pbn__lobby_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class Phase : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint phase_id - { - get => __pbn__phase_id.GetValueOrDefault(); - set => __pbn__phase_id = value; - } - public bool ShouldSerializephase_id() => __pbn__phase_id != null; - public void Resetphase_id() => __pbn__phase_id = null; - private uint? __pbn__phase_id; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue(CDCGTourney.EFormat.k_eFormat_Invalid)] - public CDCGTourney.EFormat format - { - get => __pbn__format ?? CDCGTourney.EFormat.k_eFormat_Invalid; - set => __pbn__format = value; - } - public bool ShouldSerializeformat() => __pbn__format != null; - public void Resetformat() => __pbn__format = null; - private CDCGTourney.EFormat? __pbn__format; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue(CDCGTourney.EPhaseStage.k_ePhaseStage_Pending)] - public CDCGTourney.EPhaseStage stage - { - get => __pbn__stage ?? CDCGTourney.EPhaseStage.k_ePhaseStage_Pending; - set => __pbn__stage = value; - } - public bool ShouldSerializestage() => __pbn__stage != null; - public void Resetstage() => __pbn__stage = null; - private CDCGTourney.EPhaseStage? __pbn__stage; - - [global::ProtoBuf.ProtoMember(4)] - public global::System.Collections.Generic.List series { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(5)] - public uint limited_format - { - get => __pbn__limited_format.GetValueOrDefault(); - set => __pbn__limited_format = value; - } - public bool ShouldSerializelimited_format() => __pbn__limited_format != null; - public void Resetlimited_format() => __pbn__limited_format = null; - private uint? __pbn__limited_format; - - [global::ProtoBuf.ProtoMember(6)] - public ulong limited_instance_id - { - get => __pbn__limited_instance_id.GetValueOrDefault(); - set => __pbn__limited_instance_id = value; - } - public bool ShouldSerializelimited_instance_id() => __pbn__limited_instance_id != null; - public void Resetlimited_instance_id() => __pbn__limited_instance_id = null; - private ulong? __pbn__limited_instance_id; - - [global::ProtoBuf.ProtoMember(7)] - public ulong limited_pool_id - { - get => __pbn__limited_pool_id.GetValueOrDefault(); - set => __pbn__limited_pool_id = value; - } - public bool ShouldSerializelimited_pool_id() => __pbn__limited_pool_id != null; - public void Resetlimited_pool_id() => __pbn__limited_pool_id = null; - private ulong? __pbn__limited_pool_id; - - [global::ProtoBuf.ProtoMember(9)] - public uint auto_advance_time - { - get => __pbn__auto_advance_time.GetValueOrDefault(); - set => __pbn__auto_advance_time = value; - } - public bool ShouldSerializeauto_advance_time() => __pbn__auto_advance_time != null; - public void Resetauto_advance_time() => __pbn__auto_advance_time = null; - private uint? __pbn__auto_advance_time; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class PlayerDeck : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint deck_index - { - get => __pbn__deck_index.GetValueOrDefault(); - set => __pbn__deck_index = value; - } - public bool ShouldSerializedeck_index() => __pbn__deck_index != null; - public void Resetdeck_index() => __pbn__deck_index = null; - private uint? __pbn__deck_index; - - [global::ProtoBuf.ProtoMember(2)] - public byte[] deck_bytes - { - get => __pbn__deck_bytes; - set => __pbn__deck_bytes = value; - } - public bool ShouldSerializedeck_bytes() => __pbn__deck_bytes != null; - public void Resetdeck_bytes() => __pbn__deck_bytes = null; - private byte[] __pbn__deck_bytes; - - [global::ProtoBuf.ProtoMember(3)] - public uint phase_id - { - get => __pbn__phase_id.GetValueOrDefault(); - set => __pbn__phase_id = value; - } - public bool ShouldSerializephase_id() => __pbn__phase_id != null; - public void Resetphase_id() => __pbn__phase_id = null; - private uint? __pbn__phase_id; - - [global::ProtoBuf.ProtoMember(4)] - public uint shared_by - { - get => __pbn__shared_by.GetValueOrDefault(); - set => __pbn__shared_by = value; - } - public bool ShouldSerializeshared_by() => __pbn__shared_by != null; - public void Resetshared_by() => __pbn__shared_by = null; - private uint? __pbn__shared_by; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class Member : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint rights_flags - { - get => __pbn__rights_flags.GetValueOrDefault(); - set => __pbn__rights_flags = value; - } - public bool ShouldSerializerights_flags() => __pbn__rights_flags != null; - public void Resetrights_flags() => __pbn__rights_flags = null; - private uint? __pbn__rights_flags; - - [global::ProtoBuf.ProtoMember(3)] - public global::System.Collections.Generic.List public_registered_decks { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(4)] - public uint initial_seed - { - get => __pbn__initial_seed.GetValueOrDefault(); - set => __pbn__initial_seed = value; - } - public bool ShouldSerializeinitial_seed() => __pbn__initial_seed != null; - public void Resetinitial_seed() => __pbn__initial_seed = null; - private uint? __pbn__initial_seed; - - [global::ProtoBuf.ProtoMember(5)] - public uint initial_group - { - get => __pbn__initial_group.GetValueOrDefault(); - set => __pbn__initial_group = value; - } - public bool ShouldSerializeinitial_group() => __pbn__initial_group != null; - public void Resetinitial_group() => __pbn__initial_group = null; - private uint? __pbn__initial_group; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class Invite : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint invited_by - { - get => __pbn__invited_by.GetValueOrDefault(); - set => __pbn__invited_by = value; - } - public bool ShouldSerializeinvited_by() => __pbn__invited_by != null; - public void Resetinvited_by() => __pbn__invited_by = null; - private uint? __pbn__invited_by; - - [global::ProtoBuf.ProtoMember(3)] - public uint invite_time - { - get => __pbn__invite_time.GetValueOrDefault(); - set => __pbn__invite_time = value; - } - public bool ShouldSerializeinvite_time() => __pbn__invite_time != null; - public void Resetinvite_time() => __pbn__invite_time = null; - private uint? __pbn__invite_time; - - [global::ProtoBuf.ProtoMember(4)] - public uint rights_flags - { - get => __pbn__rights_flags.GetValueOrDefault(); - set => __pbn__rights_flags = value; - } - public bool ShouldSerializerights_flags() => __pbn__rights_flags != null; - public void Resetrights_flags() => __pbn__rights_flags = null; - private uint? __pbn__rights_flags; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class ConfigVals : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint val_id - { - get => __pbn__val_id.GetValueOrDefault(); - set => __pbn__val_id = value; - } - public bool ShouldSerializeval_id() => __pbn__val_id != null; - public void Resetval_id() => __pbn__val_id = null; - private uint? __pbn__val_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint phase_id - { - get => __pbn__phase_id.GetValueOrDefault(); - set => __pbn__phase_id = value; - } - public bool ShouldSerializephase_id() => __pbn__phase_id != null; - public void Resetphase_id() => __pbn__phase_id = null; - private uint? __pbn__phase_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint value - { - get => __pbn__value.GetValueOrDefault(); - set => __pbn__value = value; - } - public bool ShouldSerializevalue() => __pbn__value != null; - public void Resetvalue() => __pbn__value = null; - private uint? __pbn__value; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class SharedDeck : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint shared_by - { - get => __pbn__shared_by.GetValueOrDefault(); - set => __pbn__shared_by = value; - } - public bool ShouldSerializeshared_by() => __pbn__shared_by != null; - public void Resetshared_by() => __pbn__shared_by = null; - private uint? __pbn__shared_by; - - [global::ProtoBuf.ProtoMember(2)] - public byte[] deck_bytes - { - get => __pbn__deck_bytes; - set => __pbn__deck_bytes = value; - } - public bool ShouldSerializedeck_bytes() => __pbn__deck_bytes != null; - public void Resetdeck_bytes() => __pbn__deck_bytes = null; - private byte[] __pbn__deck_bytes; - - [global::ProtoBuf.ProtoMember(3)] - public uint shared_slot - { - get => __pbn__shared_slot.GetValueOrDefault(); - set => __pbn__shared_slot = value; - } - public bool ShouldSerializeshared_slot() => __pbn__shared_slot != null; - public void Resetshared_slot() => __pbn__shared_slot = null; - private uint? __pbn__shared_slot; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class EntryItem : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint def_index - { - get => __pbn__def_index.GetValueOrDefault(); - set => __pbn__def_index = value; - } - public bool ShouldSerializedef_index() => __pbn__def_index != null; - public void Resetdef_index() => __pbn__def_index = null; - private uint? __pbn__def_index; - - [global::ProtoBuf.ProtoMember(2)] - public uint quantity - { - get => __pbn__quantity.GetValueOrDefault(); - set => __pbn__quantity = value; - } - public bool ShouldSerializequantity() => __pbn__quantity != null; - public void Resetquantity() => __pbn__quantity = null; - private uint? __pbn__quantity; - - [global::ProtoBuf.ProtoMember(3)] - public bool per_member - { - get => __pbn__per_member.GetValueOrDefault(); - set => __pbn__per_member = value; - } - public bool ShouldSerializeper_member() => __pbn__per_member != null; - public void Resetper_member() => __pbn__per_member = null; - private bool? __pbn__per_member; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class PaidEntryItem : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint def_index - { - get => __pbn__def_index.GetValueOrDefault(); - set => __pbn__def_index = value; - } - public bool ShouldSerializedef_index() => __pbn__def_index != null; - public void Resetdef_index() => __pbn__def_index = null; - private uint? __pbn__def_index; - - [global::ProtoBuf.ProtoMember(2)] - public uint target_account_id - { - get => __pbn__target_account_id.GetValueOrDefault(); - set => __pbn__target_account_id = value; - } - public bool ShouldSerializetarget_account_id() => __pbn__target_account_id != null; - public void Resettarget_account_id() => __pbn__target_account_id = null; - private uint? __pbn__target_account_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint owner_account_id - { - get => __pbn__owner_account_id.GetValueOrDefault(); - set => __pbn__owner_account_id = value; - } - public bool ShouldSerializeowner_account_id() => __pbn__owner_account_id != null; - public void Resetowner_account_id() => __pbn__owner_account_id = null; - private uint? __pbn__owner_account_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class Validator : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint phase_id - { - get => __pbn__phase_id.GetValueOrDefault(); - set => __pbn__phase_id = value; - } - public bool ShouldSerializephase_id() => __pbn__phase_id != null; - public void Resetphase_id() => __pbn__phase_id = null; - private uint? __pbn__phase_id; - - [global::ProtoBuf.ProtoMember(2)] - public CMsgDeckValidator deck_validator { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public enum EStage - { - k_eStage_Configure = 10, - k_eStage_Invites = 20, - k_eStage_Seeding = 30, - k_eStage_PlayPhases = 40, - k_eStage_Closed = 50, - } - - [global::ProtoBuf.ProtoContract()] - public enum EPhaseStage - { - k_ePhaseStage_Pending = 10, - k_ePhaseStage_Limited = 20, - k_ePhaseStage_Edit = 30, - k_ePhaseStage_Playing = 40, - k_ePhaseStage_Complete = 50, - } - - [global::ProtoBuf.ProtoContract()] - public enum EFormat - { - k_eFormat_Invalid = 0, - k_eFormat_Bracket_SingleElim = 1, - k_eFormat_Swiss = 2, - k_eFormat_FreeForAll = 3, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgRegionPingTimesClient : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize, IsPacked = true)] - public global::System.Collections.Generic.List data_center_codes { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(2, IsPacked = true)] - public global::System.Collections.Generic.List ping_times { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgMarketPrices : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint time_stamp - { - get => __pbn__time_stamp.GetValueOrDefault(); - set => __pbn__time_stamp = value; - } - public bool ShouldSerializetime_stamp() => __pbn__time_stamp != null; - public void Resettime_stamp() => __pbn__time_stamp = null; - private uint? __pbn__time_stamp; - - [global::ProtoBuf.ProtoMember(2)] - public uint currency_id - { - get => __pbn__currency_id.GetValueOrDefault(); - set => __pbn__currency_id = value; - } - public bool ShouldSerializecurrency_id() => __pbn__currency_id != null; - public void Resetcurrency_id() => __pbn__currency_id = null; - private uint? __pbn__currency_id; - - [global::ProtoBuf.ProtoMember(3, IsPacked = true)] - public global::System.Collections.Generic.List def_indices { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(4, IsPacked = true)] - public global::System.Collections.Generic.List purchase_price { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(5, IsPacked = true)] - public global::System.Collections.Generic.List sell_price { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(6)] - public bool request_up_to_date - { - get => __pbn__request_up_to_date.GetValueOrDefault(); - set => __pbn__request_up_to_date = value; - } - public bool ShouldSerializerequest_up_to_date() => __pbn__request_up_to_date != null; - public void Resetrequest_up_to_date() => __pbn__request_up_to_date = null; - private bool? __pbn__request_up_to_date; - - [global::ProtoBuf.ProtoMember(7)] - public uint valid_through - { - get => __pbn__valid_through.GetValueOrDefault(); - set => __pbn__valid_through = value; - } - public bool ShouldSerializevalid_through() => __pbn__valid_through != null; - public void Resetvalid_through() => __pbn__valid_through = null; - private uint? __pbn__valid_through; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgMatchData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(4)] - public uint match_duration_s - { - get => __pbn__match_duration_s.GetValueOrDefault(); - set => __pbn__match_duration_s = value; - } - public bool ShouldSerializematch_duration_s() => __pbn__match_duration_s != null; - public void Resetmatch_duration_s() => __pbn__match_duration_s = null; - private uint? __pbn__match_duration_s; - - [global::ProtoBuf.ProtoMember(5)] - public uint game_turns - { - get => __pbn__game_turns.GetValueOrDefault(); - set => __pbn__game_turns = value; - } - public bool ShouldSerializegame_turns() => __pbn__game_turns != null; - public void Resetgame_turns() => __pbn__game_turns = null; - private uint? __pbn__game_turns; - - [global::ProtoBuf.ProtoMember(6)] - [global::System.ComponentModel.DefaultValue(EEndReason.k_EEndReason_TeamWin)] - public EEndReason end_reason - { - get => __pbn__end_reason ?? EEndReason.k_EEndReason_TeamWin; - set => __pbn__end_reason = value; - } - public bool ShouldSerializeend_reason() => __pbn__end_reason != null; - public void Resetend_reason() => __pbn__end_reason = null; - private EEndReason? __pbn__end_reason; - - [global::ProtoBuf.ProtoMember(7)] - [global::System.ComponentModel.DefaultValue(EDCGLobbyTeam.k_EDCGLobbyTeam_Team0)] - public EDCGLobbyTeam winning_team - { - get => __pbn__winning_team ?? EDCGLobbyTeam.k_EDCGLobbyTeam_Team0; - set => __pbn__winning_team = value; - } - public bool ShouldSerializewinning_team() => __pbn__winning_team != null; - public void Resetwinning_team() => __pbn__winning_team = null; - private EDCGLobbyTeam? __pbn__winning_team; - - [global::ProtoBuf.ProtoMember(8)] - public global::System.Collections.Generic.List players { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class PlayerInfo : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue(EDCGLobbyTeam.k_EDCGLobbyTeam_Team0)] - public EDCGLobbyTeam team - { - get => __pbn__team ?? EDCGLobbyTeam.k_EDCGLobbyTeam_Team0; - set => __pbn__team = value; - } - public bool ShouldSerializeteam() => __pbn__team != null; - public void Resetteam() => __pbn__team = null; - private EDCGLobbyTeam? __pbn__team; - - [global::ProtoBuf.ProtoMember(3)] - public uint player_slot - { - get => __pbn__player_slot.GetValueOrDefault(); - set => __pbn__player_slot = value; - } - public bool ShouldSerializeplayer_slot() => __pbn__player_slot != null; - public void Resetplayer_slot() => __pbn__player_slot = null; - private uint? __pbn__player_slot; - - [global::ProtoBuf.ProtoMember(4)] - public global::System.Collections.Generic.List hero_lineup { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(5)] - public global::System.Collections.Generic.List tower_health { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(6)] - public uint ancient_health - { - get => __pbn__ancient_health.GetValueOrDefault(); - set => __pbn__ancient_health = value; - } - public bool ShouldSerializeancient_health() => __pbn__ancient_health != null; - public void Resetancient_health() => __pbn__ancient_health = null; - private uint? __pbn__ancient_health; - - [global::ProtoBuf.ProtoMember(8)] - public bool conceded - { - get => __pbn__conceded.GetValueOrDefault(); - set => __pbn__conceded = value; - } - public bool ShouldSerializeconceded() => __pbn__conceded != null; - public void Resetconceded() => __pbn__conceded = null; - private bool? __pbn__conceded; - - [global::ProtoBuf.ProtoMember(9)] - public uint game_clock - { - get => __pbn__game_clock.GetValueOrDefault(); - set => __pbn__game_clock = value; - } - public bool ShouldSerializegame_clock() => __pbn__game_clock != null; - public void Resetgame_clock() => __pbn__game_clock = null; - private uint? __pbn__game_clock; - - [global::ProtoBuf.ProtoMember(10)] - public global::System.Collections.Generic.List hero_ids { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(11)] - public uint mmr - { - get => __pbn__mmr.GetValueOrDefault(); - set => __pbn__mmr = value; - } - public bool ShouldSerializemmr() => __pbn__mmr != null; - public void Resetmmr() => __pbn__mmr = null; - private uint? __pbn__mmr; - - [global::ProtoBuf.ProtoMember(12)] - public uint mmr_uncertainty - { - get => __pbn__mmr_uncertainty.GetValueOrDefault(); - set => __pbn__mmr_uncertainty = value; - } - public bool ShouldSerializemmr_uncertainty() => __pbn__mmr_uncertainty != null; - public void Resetmmr_uncertainty() => __pbn__mmr_uncertainty = null; - private uint? __pbn__mmr_uncertainty; - - [global::ProtoBuf.ProtoMember(13)] - public byte[] deck_bytes - { - get => __pbn__deck_bytes; - set => __pbn__deck_bytes = value; - } - public bool ShouldSerializedeck_bytes() => __pbn__deck_bytes != null; - public void Resetdeck_bytes() => __pbn__deck_bytes = null; - private byte[] __pbn__deck_bytes; - - } - - [global::ProtoBuf.ProtoContract()] - public enum EEndReason - { - k_EEndReason_TeamWin = 0, - k_EEndReason_Tie = 1, - k_EEndReason_AllAbandoned = 2, - k_EEndReason_NetworkIssues = 3, - k_EEndReason_MatchLength = 4, - k_EEndReason_PlayerNeverConnected = 5, - } - - } - - [global::ProtoBuf.ProtoContract()] - public enum EGCDCGCommonMessages - { - k_EMsgAnyToGCReportAsserts = 7000, - k_EMsgAnyToGCReportAssertsResponse = 7001, - } - - [global::ProtoBuf.ProtoContract()] - public enum EDCGMatchMode - { - k_EDCGMatchMode_Unranked = 2, - k_EDCGMatchMode_Gauntlet = 3, - k_EDCGMatchMode_PrivateLobby = 6, - k_EDCGMatchMode_Puzzle = 7, - k_EDCGMatchMode_AI = 8, - k_EDCGMatchMode_Tournament = 9, - } - - [global::ProtoBuf.ProtoContract()] - public enum EDCGLobbyTeam - { - k_EDCGLobbyTeam_Team0 = 0, - k_EDCGLobbyTeam_Team1 = 1, - k_EDCGLobbyTeam_Spectator = 16, - } - - [global::ProtoBuf.ProtoContract()] - public enum EDCGLobbyTimer - { - k_eDCGLobbyTimer_Unspecified = 0, - k_eDCGLobbyTimer_Disabled = 1, - k_eDCGLobbyTimer_Default = 2, - k_eDCGLobbyTimer_Tournament = 3, - k_eDCGLobbyTimer_TimeAttack = 4, - k_eDCGLobbyTimer_ShotClockOnly = 5, - } - - [global::ProtoBuf.ProtoContract()] - public enum ELobbyServerState - { - k_eLobbyServerState_Assign = 0, - k_eLobbyServerState_InGame = 1, - k_eLobbyServerState_PostMatch = 2, - k_eLobbyServerState_SignedOut = 3, - k_eLobbyServerState_Abandoned = 4, - } - - [global::ProtoBuf.ProtoContract()] - public enum EGCLobbyData - { - k_ELobbyData_PostMatchSurvey = 1, - } - - [global::ProtoBuf.ProtoContract()] - public enum DCG_COMBATLOG_TYPES - { - DCG_COMBATLOG_INVALID = -1, - DCG_COMBATLOG_DAMAGE = 0, - DCG_COMBATLOG_HEAL = 1, - DCG_COMBATLOG_DRAW = 2, - DCG_COMBATLOG_PASS = 3, - DCG_COMBATLOG_COMBAT = 4, - DCG_COMBATLOG_PLAY_CREEP = 5, - DCG_COMBATLOG_PLAY_IMPROVEMENT = 6, - DCG_COMBATLOG_PLAY_SPELL = 7, - DCG_COMBATLOG_PLAY_EQUIPMENT = 8, - DCG_COMBATLOG_PLAY_ABILITY = 9, - DCG_COMBATLOG_GAIN_GOLD = 10, - DCG_COMBATLOG_BUY_ITEM = 11, - DCG_COMBATLOG_DISCARD = 12, - DCG_COMBATLOG_ADD_MODIFIER = 13, - DCG_COMBATLOG_REMOVE_MODIFIER = 14, - DCG_COMBATLOG_KILL = 15, - DCG_COMBATLOG_CARD_MOVE = 16, - DCG_COMBATLOG_CREEP_SPAWN = 17, - DCG_COMBATLOG_DEATH = 18, - DCG_COMBATLOG_COMBAT_OVER = 19, - DCG_COMBATLOG_BEGGINING_OF_SPELLCASTING = 20, - DCG_COMBATLOG_BEGGINING_OF_SPELLCASTING_END = 21, - DCG_COMBATLOG_UNIT_ENTERING_COMBAT = 22, - DCG_COMBATLOG_UNIT_LEAVING_COMBAT = 23, - DCG_COMBATLOG_TRIGGER_TRIGGERED = 24, - } - -} - -#pragma warning restore CS0612, CS0618, CS1591, CS3021, IDE0079, IDE1006, RCS1036, RCS1057, RCS1085, RCS1192 -#endregion diff --git a/SteamKit2/SteamKit2/Base/Generated/GC/Artifact/MsgGCServer.cs b/SteamKit2/SteamKit2/Base/Generated/GC/Artifact/MsgGCServer.cs deleted file mode 100644 index 98c92ccfa..000000000 --- a/SteamKit2/SteamKit2/Base/Generated/GC/Artifact/MsgGCServer.cs +++ /dev/null @@ -1,2056 +0,0 @@ -// -// This file was generated by a tool; you should avoid making direct changes. -// Consider using 'partial classes' to extend these types -// Input: dcg_gcmessages_server.proto -// - -#region Designer generated code -#pragma warning disable CS0612, CS0618, CS1591, CS3021, IDE0079, IDE1006, RCS1036, RCS1057, RCS1085, RCS1192 -namespace SteamKit2.GC.Artifact.Internal -{ - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerCrashSentinelFile : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint version - { - get => __pbn__version.GetValueOrDefault(); - set => __pbn__version = value; - } - public bool ShouldSerializeversion() => __pbn__version != null; - public void Resetversion() => __pbn__version = null; - private uint? __pbn__version; - - [global::ProtoBuf.ProtoMember(2, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong server_steam_id - { - get => __pbn__server_steam_id.GetValueOrDefault(); - set => __pbn__server_steam_id = value; - } - public bool ShouldSerializeserver_steam_id() => __pbn__server_steam_id != null; - public void Resetserver_steam_id() => __pbn__server_steam_id = null; - private ulong? __pbn__server_steam_id; - - [global::ProtoBuf.ProtoMember(3, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public uint server_public_ip_addr - { - get => __pbn__server_public_ip_addr.GetValueOrDefault(); - set => __pbn__server_public_ip_addr = value; - } - public bool ShouldSerializeserver_public_ip_addr() => __pbn__server_public_ip_addr != null; - public void Resetserver_public_ip_addr() => __pbn__server_public_ip_addr = null; - private uint? __pbn__server_public_ip_addr; - - [global::ProtoBuf.ProtoMember(4)] - public uint server_port - { - get => __pbn__server_port.GetValueOrDefault(); - set => __pbn__server_port = value; - } - public bool ShouldSerializeserver_port() => __pbn__server_port != null; - public void Resetserver_port() => __pbn__server_port = null; - private uint? __pbn__server_port; - - [global::ProtoBuf.ProtoMember(5)] - public uint server_cluster - { - get => __pbn__server_cluster.GetValueOrDefault(); - set => __pbn__server_cluster = value; - } - public bool ShouldSerializeserver_cluster() => __pbn__server_cluster != null; - public void Resetserver_cluster() => __pbn__server_cluster = null; - private uint? __pbn__server_cluster; - - [global::ProtoBuf.ProtoMember(6)] - public uint pid - { - get => __pbn__pid.GetValueOrDefault(); - set => __pbn__pid = value; - } - public bool ShouldSerializepid() => __pbn__pid != null; - public void Resetpid() => __pbn__pid = null; - private uint? __pbn__pid; - - [global::ProtoBuf.ProtoMember(7)] - public uint saved_time - { - get => __pbn__saved_time.GetValueOrDefault(); - set => __pbn__saved_time = value; - } - public bool ShouldSerializesaved_time() => __pbn__saved_time != null; - public void Resetsaved_time() => __pbn__saved_time = null; - private uint? __pbn__saved_time; - - [global::ProtoBuf.ProtoMember(8)] - public uint server_version - { - get => __pbn__server_version.GetValueOrDefault(); - set => __pbn__server_version = value; - } - public bool ShouldSerializeserver_version() => __pbn__server_version != null; - public void Resetserver_version() => __pbn__server_version = null; - private uint? __pbn__server_version; - - [global::ProtoBuf.ProtoMember(9)] - public DCGGameInfo dcg_info { get; set; } - - [global::ProtoBuf.ProtoMember(10)] - public uint server_private_ip_addr - { - get => __pbn__server_private_ip_addr.GetValueOrDefault(); - set => __pbn__server_private_ip_addr = value; - } - public bool ShouldSerializeserver_private_ip_addr() => __pbn__server_private_ip_addr != null; - public void Resetserver_private_ip_addr() => __pbn__server_private_ip_addr = null; - private uint? __pbn__server_private_ip_addr; - - [global::ProtoBuf.ProtoMember(11)] - public uint instance_id - { - get => __pbn__instance_id.GetValueOrDefault(); - set => __pbn__instance_id = value; - } - public bool ShouldSerializeinstance_id() => __pbn__instance_id != null; - public void Resetinstance_id() => __pbn__instance_id = null; - private uint? __pbn__instance_id; - - [global::ProtoBuf.ProtoContract()] - public partial class DCGGameInfo : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong match_id - { - get => __pbn__match_id.GetValueOrDefault(); - set => __pbn__match_id = value; - } - public bool ShouldSerializematch_id() => __pbn__match_id != null; - public void Resetmatch_id() => __pbn__match_id = null; - private ulong? __pbn__match_id; - - [global::ProtoBuf.ProtoMember(2, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong lobby_id - { - get => __pbn__lobby_id.GetValueOrDefault(); - set => __pbn__lobby_id = value; - } - public bool ShouldSerializelobby_id() => __pbn__lobby_id != null; - public void Resetlobby_id() => __pbn__lobby_id = null; - private ulong? __pbn__lobby_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint gauntlet_id - { - get => __pbn__gauntlet_id.GetValueOrDefault(); - set => __pbn__gauntlet_id = value; - } - public bool ShouldSerializegauntlet_id() => __pbn__gauntlet_id != null; - public void Resetgauntlet_id() => __pbn__gauntlet_id = null; - private uint? __pbn__gauntlet_id; - - [global::ProtoBuf.ProtoMember(4)] - public uint server_state - { - get => __pbn__server_state.GetValueOrDefault(); - set => __pbn__server_state = value; - } - public bool ShouldSerializeserver_state() => __pbn__server_state != null; - public void Resetserver_state() => __pbn__server_state = null; - private uint? __pbn__server_state; - - [global::ProtoBuf.ProtoMember(5)] - public global::System.Collections.Generic.List client_account_ids { get; } = new global::System.Collections.Generic.List(); - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CServerLobbyData_CardAchievements : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2, IsPacked = true)] - public global::System.Collections.Generic.List achievement_ids { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3, IsPacked = true)] - public global::System.Collections.Generic.List progress { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CServerDraftCard : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint def_index - { - get => __pbn__def_index.GetValueOrDefault(); - set => __pbn__def_index = value; - } - public bool ShouldSerializedef_index() => __pbn__def_index != null; - public void Resetdef_index() => __pbn__def_index = null; - private uint? __pbn__def_index; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CServerLobbyData_DraftCards : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List players { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class Pack : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong pack_item_id - { - get => __pbn__pack_item_id.GetValueOrDefault(); - set => __pbn__pack_item_id = value; - } - public bool ShouldSerializepack_item_id() => __pbn__pack_item_id != null; - public void Resetpack_item_id() => __pbn__pack_item_id = null; - private ulong? __pbn__pack_item_id; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List pack_cards { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class Player : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List packs { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3)] - public bool cannot_trade - { - get => __pbn__cannot_trade.GetValueOrDefault(); - set => __pbn__cannot_trade = value; - } - public bool ShouldSerializecannot_trade() => __pbn__cannot_trade != null; - public void Resetcannot_trade() => __pbn__cannot_trade = null; - private bool? __pbn__cannot_trade; - - [global::ProtoBuf.ProtoMember(4)] - public uint trade_restriction_time - { - get => __pbn__trade_restriction_time.GetValueOrDefault(); - set => __pbn__trade_restriction_time = value; - } - public bool ShouldSerializetrade_restriction_time() => __pbn__trade_restriction_time != null; - public void Resettrade_restriction_time() => __pbn__trade_restriction_time = null; - private uint? __pbn__trade_restriction_time; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CServerLobbyData_PlayerDeck : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public byte[] deck_code - { - get => __pbn__deck_code; - set => __pbn__deck_code = value; - } - public bool ShouldSerializedeck_code() => __pbn__deck_code != null; - public void Resetdeck_code() => __pbn__deck_code = null; - private byte[] __pbn__deck_code; - - [global::ProtoBuf.ProtoMember(2)] - public byte[] collection_code - { - get => __pbn__collection_code; - set => __pbn__collection_code = value; - } - public bool ShouldSerializecollection_code() => __pbn__collection_code != null; - public void Resetcollection_code() => __pbn__collection_code = null; - private byte[] __pbn__collection_code; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CServerLobbyData_PlayerMMR : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List players { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class Player : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint mmr - { - get => __pbn__mmr.GetValueOrDefault(); - set => __pbn__mmr = value; - } - public bool ShouldSerializemmr() => __pbn__mmr != null; - public void Resetmmr() => __pbn__mmr = null; - private uint? __pbn__mmr; - - [global::ProtoBuf.ProtoMember(3)] - public uint uncertainty - { - get => __pbn__uncertainty.GetValueOrDefault(); - set => __pbn__uncertainty = value; - } - public bool ShouldSerializeuncertainty() => __pbn__uncertainty != null; - public void Resetuncertainty() => __pbn__uncertainty = null; - private uint? __pbn__uncertainty; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CServerLobbyData_GauntletInfo : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public CMsgGauntletConfig gauntlet_config { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CServerLobbyData_DeckValidator : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public CMsgDeckValidator deck_validator { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CServerLobbyData_PlayerInfo : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint progress_level - { - get => __pbn__progress_level.GetValueOrDefault(); - set => __pbn__progress_level = value; - } - public bool ShouldSerializeprogress_level() => __pbn__progress_level != null; - public void Resetprogress_level() => __pbn__progress_level = null; - private uint? __pbn__progress_level; - - [global::ProtoBuf.ProtoMember(3)] - public uint progress_xp - { - get => __pbn__progress_xp.GetValueOrDefault(); - set => __pbn__progress_xp = value; - } - public bool ShouldSerializeprogress_xp() => __pbn__progress_xp != null; - public void Resetprogress_xp() => __pbn__progress_xp = null; - private uint? __pbn__progress_xp; - - [global::ProtoBuf.ProtoMember(4)] - public uint mmr_level - { - get => __pbn__mmr_level.GetValueOrDefault(); - set => __pbn__mmr_level = value; - } - public bool ShouldSerializemmr_level() => __pbn__mmr_level != null; - public void Resetmmr_level() => __pbn__mmr_level = null; - private uint? __pbn__mmr_level; - - [global::ProtoBuf.ProtoMember(5)] - public uint last_win_bonus_time - { - get => __pbn__last_win_bonus_time.GetValueOrDefault(); - set => __pbn__last_win_bonus_time = value; - } - public bool ShouldSerializelast_win_bonus_time() => __pbn__last_win_bonus_time != null; - public void Resetlast_win_bonus_time() => __pbn__last_win_bonus_time = null; - private uint? __pbn__last_win_bonus_time; - - [global::ProtoBuf.ProtoMember(6)] - public uint win_streak - { - get => __pbn__win_streak.GetValueOrDefault(); - set => __pbn__win_streak = value; - } - public bool ShouldSerializewin_streak() => __pbn__win_streak != null; - public void Resetwin_streak() => __pbn__win_streak = null; - private uint? __pbn__win_streak; - - [global::ProtoBuf.ProtoMember(7)] - public uint bonus_period_wins - { - get => __pbn__bonus_period_wins.GetValueOrDefault(); - set => __pbn__bonus_period_wins = value; - } - public bool ShouldSerializebonus_period_wins() => __pbn__bonus_period_wins != null; - public void Resetbonus_period_wins() => __pbn__bonus_period_wins = null; - private uint? __pbn__bonus_period_wins; - - [global::ProtoBuf.ProtoMember(8)] - public uint player_badge - { - get => __pbn__player_badge.GetValueOrDefault(); - set => __pbn__player_badge = value; - } - public bool ShouldSerializeplayer_badge() => __pbn__player_badge != null; - public void Resetplayer_badge() => __pbn__player_badge = null; - private uint? __pbn__player_badge; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CSODCGServerLobby : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List extra_messages { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(2, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong server_steam_id - { - get => __pbn__server_steam_id.GetValueOrDefault(); - set => __pbn__server_steam_id = value; - } - public bool ShouldSerializeserver_steam_id() => __pbn__server_steam_id != null; - public void Resetserver_steam_id() => __pbn__server_steam_id = null; - private ulong? __pbn__server_steam_id; - - [global::ProtoBuf.ProtoMember(3)] - public ulong lobby_id - { - get => __pbn__lobby_id.GetValueOrDefault(); - set => __pbn__lobby_id = value; - } - public bool ShouldSerializelobby_id() => __pbn__lobby_id != null; - public void Resetlobby_id() => __pbn__lobby_id = null; - private ulong? __pbn__lobby_id; - - [global::ProtoBuf.ProtoMember(4, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public uint replay_salt - { - get => __pbn__replay_salt.GetValueOrDefault(); - set => __pbn__replay_salt = value; - } - public bool ShouldSerializereplay_salt() => __pbn__replay_salt != null; - public void Resetreplay_salt() => __pbn__replay_salt = null; - private uint? __pbn__replay_salt; - - [global::ProtoBuf.ProtoMember(5, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong private_lobby_id - { - get => __pbn__private_lobby_id.GetValueOrDefault(); - set => __pbn__private_lobby_id = value; - } - public bool ShouldSerializeprivate_lobby_id() => __pbn__private_lobby_id != null; - public void Resetprivate_lobby_id() => __pbn__private_lobby_id = null; - private ulong? __pbn__private_lobby_id; - - [global::ProtoBuf.ProtoMember(6)] - [global::System.ComponentModel.DefaultValue(EDCGLobbyTimer.k_eDCGLobbyTimer_Unspecified)] - public EDCGLobbyTimer timer_mode - { - get => __pbn__timer_mode ?? EDCGLobbyTimer.k_eDCGLobbyTimer_Unspecified; - set => __pbn__timer_mode = value; - } - public bool ShouldSerializetimer_mode() => __pbn__timer_mode != null; - public void Resettimer_mode() => __pbn__timer_mode = null; - private EDCGLobbyTimer? __pbn__timer_mode; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerSignoutData_MatchChatStats : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List chat_stats { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class ChatStats : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint total_messages - { - get => __pbn__total_messages.GetValueOrDefault(); - set => __pbn__total_messages = value; - } - public bool ShouldSerializetotal_messages() => __pbn__total_messages != null; - public void Resettotal_messages() => __pbn__total_messages = null; - private uint? __pbn__total_messages; - - [global::ProtoBuf.ProtoMember(3)] - public uint total_custom_messages - { - get => __pbn__total_custom_messages.GetValueOrDefault(); - set => __pbn__total_custom_messages = value; - } - public bool ShouldSerializetotal_custom_messages() => __pbn__total_custom_messages != null; - public void Resettotal_custom_messages() => __pbn__total_custom_messages = null; - private uint? __pbn__total_custom_messages; - - [global::ProtoBuf.ProtoMember(4)] - public bool user_sent_custom_message_before_mute - { - get => __pbn__user_sent_custom_message_before_mute.GetValueOrDefault(); - set => __pbn__user_sent_custom_message_before_mute = value; - } - public bool ShouldSerializeuser_sent_custom_message_before_mute() => __pbn__user_sent_custom_message_before_mute != null; - public void Resetuser_sent_custom_message_before_mute() => __pbn__user_sent_custom_message_before_mute = null; - private bool? __pbn__user_sent_custom_message_before_mute; - - [global::ProtoBuf.ProtoMember(5)] - public uint total_messages_sent_while_muted - { - get => __pbn__total_messages_sent_while_muted.GetValueOrDefault(); - set => __pbn__total_messages_sent_while_muted = value; - } - public bool ShouldSerializetotal_messages_sent_while_muted() => __pbn__total_messages_sent_while_muted != null; - public void Resettotal_messages_sent_while_muted() => __pbn__total_messages_sent_while_muted = null; - private uint? __pbn__total_messages_sent_while_muted; - - [global::ProtoBuf.ProtoMember(6)] - public uint num_times_squelched - { - get => __pbn__num_times_squelched.GetValueOrDefault(); - set => __pbn__num_times_squelched = value; - } - public bool ShouldSerializenum_times_squelched() => __pbn__num_times_squelched != null; - public void Resetnum_times_squelched() => __pbn__num_times_squelched = null; - private uint? __pbn__num_times_squelched; - - [global::ProtoBuf.ProtoMember(7)] - public bool user_muted_opponent_before_receiving_message - { - get => __pbn__user_muted_opponent_before_receiving_message.GetValueOrDefault(); - set => __pbn__user_muted_opponent_before_receiving_message = value; - } - public bool ShouldSerializeuser_muted_opponent_before_receiving_message() => __pbn__user_muted_opponent_before_receiving_message != null; - public void Resetuser_muted_opponent_before_receiving_message() => __pbn__user_muted_opponent_before_receiving_message = null; - private bool? __pbn__user_muted_opponent_before_receiving_message; - - [global::ProtoBuf.ProtoMember(8)] - public bool user_was_muted_then_was_unmuted - { - get => __pbn__user_was_muted_then_was_unmuted.GetValueOrDefault(); - set => __pbn__user_was_muted_then_was_unmuted = value; - } - public bool ShouldSerializeuser_was_muted_then_was_unmuted() => __pbn__user_was_muted_then_was_unmuted != null; - public void Resetuser_was_muted_then_was_unmuted() => __pbn__user_was_muted_then_was_unmuted = null; - private bool? __pbn__user_was_muted_then_was_unmuted; - - [global::ProtoBuf.ProtoMember(9)] - public bool user_was_muted_at_match_end - { - get => __pbn__user_was_muted_at_match_end.GetValueOrDefault(); - set => __pbn__user_was_muted_at_match_end = value; - } - public bool ShouldSerializeuser_was_muted_at_match_end() => __pbn__user_was_muted_at_match_end != null; - public void Resetuser_was_muted_at_match_end() => __pbn__user_was_muted_at_match_end = null; - private bool? __pbn__user_was_muted_at_match_end; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerSignoutData_LobbyInfo : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong match_id - { - get => __pbn__match_id.GetValueOrDefault(); - set => __pbn__match_id = value; - } - public bool ShouldSerializematch_id() => __pbn__match_id != null; - public void Resetmatch_id() => __pbn__match_id = null; - private ulong? __pbn__match_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint start_time - { - get => __pbn__start_time.GetValueOrDefault(); - set => __pbn__start_time = value; - } - public bool ShouldSerializestart_time() => __pbn__start_time != null; - public void Resetstart_time() => __pbn__start_time = null; - private uint? __pbn__start_time; - - [global::ProtoBuf.ProtoMember(3)] - public uint gauntlet_id - { - get => __pbn__gauntlet_id.GetValueOrDefault(); - set => __pbn__gauntlet_id = value; - } - public bool ShouldSerializegauntlet_id() => __pbn__gauntlet_id != null; - public void Resetgauntlet_id() => __pbn__gauntlet_id = null; - private uint? __pbn__gauntlet_id; - - [global::ProtoBuf.ProtoMember(4)] - public uint server_version - { - get => __pbn__server_version.GetValueOrDefault(); - set => __pbn__server_version = value; - } - public bool ShouldSerializeserver_version() => __pbn__server_version != null; - public void Resetserver_version() => __pbn__server_version = null; - private uint? __pbn__server_version; - - [global::ProtoBuf.ProtoMember(5)] - public uint replay_salt - { - get => __pbn__replay_salt.GetValueOrDefault(); - set => __pbn__replay_salt = value; - } - public bool ShouldSerializereplay_salt() => __pbn__replay_salt != null; - public void Resetreplay_salt() => __pbn__replay_salt = null; - private uint? __pbn__replay_salt; - - [global::ProtoBuf.ProtoMember(6)] - [global::System.ComponentModel.DefaultValue(EDCGMatchMode.k_EDCGMatchMode_Unranked)] - public EDCGMatchMode match_mode - { - get => __pbn__match_mode ?? EDCGMatchMode.k_EDCGMatchMode_Unranked; - set => __pbn__match_mode = value; - } - public bool ShouldSerializematch_mode() => __pbn__match_mode != null; - public void Resetmatch_mode() => __pbn__match_mode = null; - private EDCGMatchMode? __pbn__match_mode; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerSignoutData_PlayerDecks : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List players { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(2)] - public uint stats_version - { - get => __pbn__stats_version.GetValueOrDefault(); - set => __pbn__stats_version = value; - } - public bool ShouldSerializestats_version() => __pbn__stats_version != null; - public void Resetstats_version() => __pbn__stats_version = null; - private uint? __pbn__stats_version; - - [global::ProtoBuf.ProtoContract()] - public partial class Player : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint player_id - { - get => __pbn__player_id.GetValueOrDefault(); - set => __pbn__player_id = value; - } - public bool ShouldSerializeplayer_id() => __pbn__player_id != null; - public void Resetplayer_id() => __pbn__player_id = null; - private uint? __pbn__player_id; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List cards { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3)] - public global::System.Collections.Generic.List heroes { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(6)] - public uint critical_life - { - get => __pbn__critical_life.GetValueOrDefault(); - set => __pbn__critical_life = value; - } - public bool ShouldSerializecritical_life() => __pbn__critical_life != null; - public void Resetcritical_life() => __pbn__critical_life = null; - private uint? __pbn__critical_life; - - [global::ProtoBuf.ProtoMember(7)] - public uint total_gold - { - get => __pbn__total_gold.GetValueOrDefault(); - set => __pbn__total_gold = value; - } - public bool ShouldSerializetotal_gold() => __pbn__total_gold != null; - public void Resettotal_gold() => __pbn__total_gold = null; - private uint? __pbn__total_gold; - - [global::ProtoBuf.ProtoContract()] - public partial class Hero : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint card_id - { - get => __pbn__card_id.GetValueOrDefault(); - set => __pbn__card_id = value; - } - public bool ShouldSerializecard_id() => __pbn__card_id != null; - public void Resetcard_id() => __pbn__card_id = null; - private uint? __pbn__card_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint hero_slot - { - get => __pbn__hero_slot.GetValueOrDefault(); - set => __pbn__hero_slot = value; - } - public bool ShouldSerializehero_slot() => __pbn__hero_slot != null; - public void Resethero_slot() => __pbn__hero_slot = null; - private uint? __pbn__hero_slot; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class Card : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint card_id - { - get => __pbn__card_id.GetValueOrDefault(); - set => __pbn__card_id = value; - } - public bool ShouldSerializecard_id() => __pbn__card_id != null; - public void Resetcard_id() => __pbn__card_id = null; - private uint? __pbn__card_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint num_in_deck - { - get => __pbn__num_in_deck.GetValueOrDefault(); - set => __pbn__num_in_deck = value; - } - public bool ShouldSerializenum_in_deck() => __pbn__num_in_deck != null; - public void Resetnum_in_deck() => __pbn__num_in_deck = null; - private uint? __pbn__num_in_deck; - - [global::ProtoBuf.ProtoMember(3)] - public uint num_in_hand - { - get => __pbn__num_in_hand.GetValueOrDefault(); - set => __pbn__num_in_hand = value; - } - public bool ShouldSerializenum_in_hand() => __pbn__num_in_hand != null; - public void Resetnum_in_hand() => __pbn__num_in_hand = null; - private uint? __pbn__num_in_hand; - - [global::ProtoBuf.ProtoMember(4)] - public uint num_played - { - get => __pbn__num_played.GetValueOrDefault(); - set => __pbn__num_played = value; - } - public bool ShouldSerializenum_played() => __pbn__num_played != null; - public void Resetnum_played() => __pbn__num_played = null; - private uint? __pbn__num_played; - - } - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerSignoutData_PlayerProgress : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint xp_to_grant - { - get => __pbn__xp_to_grant.GetValueOrDefault(); - set => __pbn__xp_to_grant = value; - } - public bool ShouldSerializexp_to_grant() => __pbn__xp_to_grant != null; - public void Resetxp_to_grant() => __pbn__xp_to_grant = null; - private uint? __pbn__xp_to_grant; - - [global::ProtoBuf.ProtoMember(3)] - public global::System.Collections.Generic.List bonuses { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(5)] - public uint weekly_bonus_reset_time - { - get => __pbn__weekly_bonus_reset_time.GetValueOrDefault(); - set => __pbn__weekly_bonus_reset_time = value; - } - public bool ShouldSerializeweekly_bonus_reset_time() => __pbn__weekly_bonus_reset_time != null; - public void Resetweekly_bonus_reset_time() => __pbn__weekly_bonus_reset_time = null; - private uint? __pbn__weekly_bonus_reset_time; - - [global::ProtoBuf.ProtoContract()] - public partial class PointBonus : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint bonus_id - { - get => __pbn__bonus_id.GetValueOrDefault(); - set => __pbn__bonus_id = value; - } - public bool ShouldSerializebonus_id() => __pbn__bonus_id != null; - public void Resetbonus_id() => __pbn__bonus_id = null; - private uint? __pbn__bonus_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint bonus_points - { - get => __pbn__bonus_points.GetValueOrDefault(); - set => __pbn__bonus_points = value; - } - public bool ShouldSerializebonus_points() => __pbn__bonus_points != null; - public void Resetbonus_points() => __pbn__bonus_points = null; - private uint? __pbn__bonus_points; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerToGCMatchSignoutPermission : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint signout_start - { - get => __pbn__signout_start.GetValueOrDefault(); - set => __pbn__signout_start = value; - } - public bool ShouldSerializesignout_start() => __pbn__signout_start != null; - public void Resetsignout_start() => __pbn__signout_start = null; - private uint? __pbn__signout_start; - - [global::ProtoBuf.ProtoMember(3)] - public ulong match_id - { - get => __pbn__match_id.GetValueOrDefault(); - set => __pbn__match_id = value; - } - public bool ShouldSerializematch_id() => __pbn__match_id != null; - public void Resetmatch_id() => __pbn__match_id = null; - private ulong? __pbn__match_id; - - [global::ProtoBuf.ProtoMember(4)] - [global::System.ComponentModel.DefaultValue(EDCGMatchMode.k_EDCGMatchMode_Unranked)] - public EDCGMatchMode match_mode - { - get => __pbn__match_mode ?? EDCGMatchMode.k_EDCGMatchMode_Unranked; - set => __pbn__match_mode = value; - } - public bool ShouldSerializematch_mode() => __pbn__match_mode != null; - public void Resetmatch_mode() => __pbn__match_mode = null; - private EDCGMatchMode? __pbn__match_mode; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerToGCMatchSignoutPermissionResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public bool can_sign_out - { - get => __pbn__can_sign_out.GetValueOrDefault(); - set => __pbn__can_sign_out = value; - } - public bool ShouldSerializecan_sign_out() => __pbn__can_sign_out != null; - public void Resetcan_sign_out() => __pbn__can_sign_out = null; - private bool? __pbn__can_sign_out; - - [global::ProtoBuf.ProtoMember(2)] - public uint retry_time_s - { - get => __pbn__retry_time_s.GetValueOrDefault(); - set => __pbn__retry_time_s = value; - } - public bool ShouldSerializeretry_time_s() => __pbn__retry_time_s != null; - public void Resetretry_time_s() => __pbn__retry_time_s = null; - private uint? __pbn__retry_time_s; - - [global::ProtoBuf.ProtoMember(3)] - public global::System.Collections.Generic.List requested_data { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerSignoutData_CardAchievements : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2, IsPacked = true)] - public global::System.Collections.Generic.List achievement_ids { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3, IsPacked = true)] - public global::System.Collections.Generic.List grant_amounts { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(4, IsPacked = true)] - public global::System.Collections.Generic.List grant_types { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public enum EAchievementGrantType - { - k_EAchievementGrant_Add = 0, - k_EAchievementGrant_Max = 1, - k_EAchievementGrant_Set = 2, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerSignoutData_PerformanceStats : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint start_memory_bytes - { - get => __pbn__start_memory_bytes.GetValueOrDefault(); - set => __pbn__start_memory_bytes = value; - } - public bool ShouldSerializestart_memory_bytes() => __pbn__start_memory_bytes != null; - public void Resetstart_memory_bytes() => __pbn__start_memory_bytes = null; - private uint? __pbn__start_memory_bytes; - - [global::ProtoBuf.ProtoMember(2)] - public uint peak_memory_bytes - { - get => __pbn__peak_memory_bytes.GetValueOrDefault(); - set => __pbn__peak_memory_bytes = value; - } - public bool ShouldSerializepeak_memory_bytes() => __pbn__peak_memory_bytes != null; - public void Resetpeak_memory_bytes() => __pbn__peak_memory_bytes = null; - private uint? __pbn__peak_memory_bytes; - - [global::ProtoBuf.ProtoMember(3)] - public uint end_memory_bytes - { - get => __pbn__end_memory_bytes.GetValueOrDefault(); - set => __pbn__end_memory_bytes = value; - } - public bool ShouldSerializeend_memory_bytes() => __pbn__end_memory_bytes != null; - public void Resetend_memory_bytes() => __pbn__end_memory_bytes = null; - private uint? __pbn__end_memory_bytes; - - [global::ProtoBuf.ProtoMember(4)] - public uint total_update_time_ms - { - get => __pbn__total_update_time_ms.GetValueOrDefault(); - set => __pbn__total_update_time_ms = value; - } - public bool ShouldSerializetotal_update_time_ms() => __pbn__total_update_time_ms != null; - public void Resettotal_update_time_ms() => __pbn__total_update_time_ms = null; - private uint? __pbn__total_update_time_ms; - - [global::ProtoBuf.ProtoMember(5)] - public uint total_match_time_ms - { - get => __pbn__total_match_time_ms.GetValueOrDefault(); - set => __pbn__total_match_time_ms = value; - } - public bool ShouldSerializetotal_match_time_ms() => __pbn__total_match_time_ms != null; - public void Resettotal_match_time_ms() => __pbn__total_match_time_ms = null; - private uint? __pbn__total_match_time_ms; - - [global::ProtoBuf.ProtoMember(6)] - public uint sent_messages - { - get => __pbn__sent_messages.GetValueOrDefault(); - set => __pbn__sent_messages = value; - } - public bool ShouldSerializesent_messages() => __pbn__sent_messages != null; - public void Resetsent_messages() => __pbn__sent_messages = null; - private uint? __pbn__sent_messages; - - [global::ProtoBuf.ProtoMember(7)] - public uint received_messages - { - get => __pbn__received_messages.GetValueOrDefault(); - set => __pbn__received_messages = value; - } - public bool ShouldSerializereceived_messages() => __pbn__received_messages != null; - public void Resetreceived_messages() => __pbn__received_messages = null; - private uint? __pbn__received_messages; - - [global::ProtoBuf.ProtoMember(8)] - public uint sent_bytes - { - get => __pbn__sent_bytes.GetValueOrDefault(); - set => __pbn__sent_bytes = value; - } - public bool ShouldSerializesent_bytes() => __pbn__sent_bytes != null; - public void Resetsent_bytes() => __pbn__sent_bytes = null; - private uint? __pbn__sent_bytes; - - [global::ProtoBuf.ProtoMember(9)] - public uint received_bytes - { - get => __pbn__received_bytes.GetValueOrDefault(); - set => __pbn__received_bytes = value; - } - public bool ShouldSerializereceived_bytes() => __pbn__received_bytes != null; - public void Resetreceived_bytes() => __pbn__received_bytes = null; - private uint? __pbn__received_bytes; - - [global::ProtoBuf.ProtoMember(10)] - public uint max_update_time_micros - { - get => __pbn__max_update_time_micros.GetValueOrDefault(); - set => __pbn__max_update_time_micros = value; - } - public bool ShouldSerializemax_update_time_micros() => __pbn__max_update_time_micros != null; - public void Resetmax_update_time_micros() => __pbn__max_update_time_micros = null; - private uint? __pbn__max_update_time_micros; - - [global::ProtoBuf.ProtoMember(11)] - public uint num_updates - { - get => __pbn__num_updates.GetValueOrDefault(); - set => __pbn__num_updates = value; - } - public bool ShouldSerializenum_updates() => __pbn__num_updates != null; - public void Resetnum_updates() => __pbn__num_updates = null; - private uint? __pbn__num_updates; - - [global::ProtoBuf.ProtoMember(12)] - public uint replay_size_bytes - { - get => __pbn__replay_size_bytes.GetValueOrDefault(); - set => __pbn__replay_size_bytes = value; - } - public bool ShouldSerializereplay_size_bytes() => __pbn__replay_size_bytes != null; - public void Resetreplay_size_bytes() => __pbn__replay_size_bytes = null; - private uint? __pbn__replay_size_bytes; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerSignoutData_GameOptions : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List game_options { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class GameOption : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue("")] - public string key - { - get => __pbn__key ?? ""; - set => __pbn__key = value; - } - public bool ShouldSerializekey() => __pbn__key != null; - public void Resetkey() => __pbn__key = null; - private string __pbn__key; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string value - { - get => __pbn__value ?? ""; - set => __pbn__value = value; - } - public bool ShouldSerializevalue() => __pbn__value != null; - public void Resetvalue() => __pbn__value = null; - private string __pbn__value; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgMatchDisconnection : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint disconnect_time - { - get => __pbn__disconnect_time.GetValueOrDefault(); - set => __pbn__disconnect_time = value; - } - public bool ShouldSerializedisconnect_time() => __pbn__disconnect_time != null; - public void Resetdisconnect_time() => __pbn__disconnect_time = null; - private uint? __pbn__disconnect_time; - - [global::ProtoBuf.ProtoMember(3)] - public uint connection_state - { - get => __pbn__connection_state.GetValueOrDefault(); - set => __pbn__connection_state = value; - } - public bool ShouldSerializeconnection_state() => __pbn__connection_state != null; - public void Resetconnection_state() => __pbn__connection_state = null; - private uint? __pbn__connection_state; - - [global::ProtoBuf.ProtoMember(4)] - public uint reason_code - { - get => __pbn__reason_code.GetValueOrDefault(); - set => __pbn__reason_code = value; - } - public bool ShouldSerializereason_code() => __pbn__reason_code != null; - public void Resetreason_code() => __pbn__reason_code = null; - private uint? __pbn__reason_code; - - [global::ProtoBuf.ProtoMember(5)] - public uint reconnect_delay - { - get => __pbn__reconnect_delay.GetValueOrDefault(); - set => __pbn__reconnect_delay = value; - } - public bool ShouldSerializereconnect_delay() => __pbn__reconnect_delay != null; - public void Resetreconnect_delay() => __pbn__reconnect_delay = null; - private uint? __pbn__reconnect_delay; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerSignoutData_Disconnections : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List disconnections { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerToGCMatchSignout : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List additional_data { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(2)] - public uint signout_attempt - { - get => __pbn__signout_attempt.GetValueOrDefault(); - set => __pbn__signout_attempt = value; - } - public bool ShouldSerializesignout_attempt() => __pbn__signout_attempt != null; - public void Resetsignout_attempt() => __pbn__signout_attempt = null; - private uint? __pbn__signout_attempt; - - [global::ProtoBuf.ProtoMember(3)] - public ulong lobby_id - { - get => __pbn__lobby_id.GetValueOrDefault(); - set => __pbn__lobby_id = value; - } - public bool ShouldSerializelobby_id() => __pbn__lobby_id != null; - public void Resetlobby_id() => __pbn__lobby_id = null; - private ulong? __pbn__lobby_id; - - [global::ProtoBuf.ProtoMember(9)] - public uint cluster_id - { - get => __pbn__cluster_id.GetValueOrDefault(); - set => __pbn__cluster_id = value; - } - public bool ShouldSerializecluster_id() => __pbn__cluster_id != null; - public void Resetcluster_id() => __pbn__cluster_id = null; - private uint? __pbn__cluster_id; - - [global::ProtoBuf.ProtoMember(10)] - public CMsgMatchData match_data { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerToGCMatchSignoutResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(ESignoutResult.k_ESignout_Failed_Retry)] - public ESignoutResult result - { - get => __pbn__result ?? ESignoutResult.k_ESignout_Failed_Retry; - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private ESignoutResult? __pbn__result; - - [global::ProtoBuf.ProtoContract()] - public enum ESignoutResult - { - k_ESignout_Failed_Retry = 1, - k_ESignout_Failed_NoRetry = 2, - k_ESignout_Failed_InFlight = 3, - k_ESignout_Success = 4, - k_ESignout_Success_AlreadySignedOut = 5, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerWelcomeDCG : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerToGCIdlePing : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint server_version - { - get => __pbn__server_version.GetValueOrDefault(); - set => __pbn__server_version = value; - } - public bool ShouldSerializeserver_version() => __pbn__server_version != null; - public void Resetserver_version() => __pbn__server_version = null; - private uint? __pbn__server_version; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToServerRequestPing : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToServerAllocateForMatch : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong match_id - { - get => __pbn__match_id.GetValueOrDefault(); - set => __pbn__match_id = value; - } - public bool ShouldSerializematch_id() => __pbn__match_id != null; - public void Resetmatch_id() => __pbn__match_id = null; - private ulong? __pbn__match_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToServerAllocateForMatchResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public bool success - { - get => __pbn__success.GetValueOrDefault(); - set => __pbn__success = value; - } - public bool ShouldSerializesuccess() => __pbn__success != null; - public void Resetsuccess() => __pbn__success = null; - private bool? __pbn__success; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerToGCEnterMatchmaking : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint server_version - { - get => __pbn__server_version.GetValueOrDefault(); - set => __pbn__server_version = value; - } - public bool ShouldSerializeserver_version() => __pbn__server_version != null; - public void Resetserver_version() => __pbn__server_version = null; - private uint? __pbn__server_version; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string search_key - { - get => __pbn__search_key ?? ""; - set => __pbn__search_key = value; - } - public bool ShouldSerializesearch_key() => __pbn__search_key != null; - public void Resetsearch_key() => __pbn__search_key = null; - private string __pbn__search_key; - - [global::ProtoBuf.ProtoMember(3)] - public uint region_id - { - get => __pbn__region_id.GetValueOrDefault(); - set => __pbn__region_id = value; - } - public bool ShouldSerializeregion_id() => __pbn__region_id != null; - public void Resetregion_id() => __pbn__region_id = null; - private uint? __pbn__region_id; - - [global::ProtoBuf.ProtoMember(4)] - public uint cluster_id - { - get => __pbn__cluster_id.GetValueOrDefault(); - set => __pbn__cluster_id = value; - } - public bool ShouldSerializecluster_id() => __pbn__cluster_id != null; - public void Resetcluster_id() => __pbn__cluster_id = null; - private uint? __pbn__cluster_id; - - [global::ProtoBuf.ProtoMember(5)] - public uint server_public_ip - { - get => __pbn__server_public_ip.GetValueOrDefault(); - set => __pbn__server_public_ip = value; - } - public bool ShouldSerializeserver_public_ip() => __pbn__server_public_ip != null; - public void Resetserver_public_ip() => __pbn__server_public_ip = null; - private uint? __pbn__server_public_ip; - - [global::ProtoBuf.ProtoMember(6)] - public uint server_private_ip - { - get => __pbn__server_private_ip.GetValueOrDefault(); - set => __pbn__server_private_ip = value; - } - public bool ShouldSerializeserver_private_ip() => __pbn__server_private_ip != null; - public void Resetserver_private_ip() => __pbn__server_private_ip = null; - private uint? __pbn__server_private_ip; - - [global::ProtoBuf.ProtoMember(7)] - public uint server_port - { - get => __pbn__server_port.GetValueOrDefault(); - set => __pbn__server_port = value; - } - public bool ShouldSerializeserver_port() => __pbn__server_port != null; - public void Resetserver_port() => __pbn__server_port = null; - private uint? __pbn__server_port; - - [global::ProtoBuf.ProtoMember(9)] - public byte[] sdr_address - { - get => __pbn__sdr_address; - set => __pbn__sdr_address = value; - } - public bool ShouldSerializesdr_address() => __pbn__sdr_address != null; - public void Resetsdr_address() => __pbn__sdr_address = null; - private byte[] __pbn__sdr_address; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToServerCancelAllocateForMatch : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong match_id - { - get => __pbn__match_id.GetValueOrDefault(); - set => __pbn__match_id = value; - } - public bool ShouldSerializematch_id() => __pbn__match_id != null; - public void Resetmatch_id() => __pbn__match_id = null; - private ulong? __pbn__match_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerToGCUpdateLobbyServerState : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong lobby_id - { - get => __pbn__lobby_id.GetValueOrDefault(); - set => __pbn__lobby_id = value; - } - public bool ShouldSerializelobby_id() => __pbn__lobby_id != null; - public void Resetlobby_id() => __pbn__lobby_id = null; - private ulong? __pbn__lobby_id; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue(ELobbyServerState.k_eLobbyServerState_Assign)] - public ELobbyServerState server_state - { - get => __pbn__server_state ?? ELobbyServerState.k_eLobbyServerState_Assign; - set => __pbn__server_state = value; - } - public bool ShouldSerializeserver_state() => __pbn__server_state != null; - public void Resetserver_state() => __pbn__server_state = null; - private ELobbyServerState? __pbn__server_state; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerToGCAbandonMatch : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong server_steam_id - { - get => __pbn__server_steam_id.GetValueOrDefault(); - set => __pbn__server_steam_id = value; - } - public bool ShouldSerializeserver_steam_id() => __pbn__server_steam_id != null; - public void Resetserver_steam_id() => __pbn__server_steam_id = null; - private ulong? __pbn__server_steam_id; - - [global::ProtoBuf.ProtoMember(2, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong lobby_id - { - get => __pbn__lobby_id.GetValueOrDefault(); - set => __pbn__lobby_id = value; - } - public bool ShouldSerializelobby_id() => __pbn__lobby_id != null; - public void Resetlobby_id() => __pbn__lobby_id = null; - private ulong? __pbn__lobby_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint cluster_id - { - get => __pbn__cluster_id.GetValueOrDefault(); - set => __pbn__cluster_id = value; - } - public bool ShouldSerializecluster_id() => __pbn__cluster_id != null; - public void Resetcluster_id() => __pbn__cluster_id = null; - private uint? __pbn__cluster_id; - - [global::ProtoBuf.ProtoMember(4)] - [global::System.ComponentModel.DefaultValue(EReason.eReason_ServerCrash)] - public EReason reason_code - { - get => __pbn__reason_code ?? EReason.eReason_ServerCrash; - set => __pbn__reason_code = value; - } - public bool ShouldSerializereason_code() => __pbn__reason_code != null; - public void Resetreason_code() => __pbn__reason_code = null; - private EReason? __pbn__reason_code; - - [global::ProtoBuf.ProtoMember(5)] - public ulong additional_data - { - get => __pbn__additional_data.GetValueOrDefault(); - set => __pbn__additional_data = value; - } - public bool ShouldSerializeadditional_data() => __pbn__additional_data != null; - public void Resetadditional_data() => __pbn__additional_data = null; - private ulong? __pbn__additional_data; - - [global::ProtoBuf.ProtoMember(6)] - public ulong match_id - { - get => __pbn__match_id.GetValueOrDefault(); - set => __pbn__match_id = value; - } - public bool ShouldSerializematch_id() => __pbn__match_id != null; - public void Resetmatch_id() => __pbn__match_id = null; - private ulong? __pbn__match_id; - - [global::ProtoBuf.ProtoMember(7)] - public uint gauntlet_id - { - get => __pbn__gauntlet_id.GetValueOrDefault(); - set => __pbn__gauntlet_id = value; - } - public bool ShouldSerializegauntlet_id() => __pbn__gauntlet_id != null; - public void Resetgauntlet_id() => __pbn__gauntlet_id = null; - private uint? __pbn__gauntlet_id; - - [global::ProtoBuf.ProtoMember(8)] - public global::System.Collections.Generic.List players { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(9, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public uint public_ip_address - { - get => __pbn__public_ip_address.GetValueOrDefault(); - set => __pbn__public_ip_address = value; - } - public bool ShouldSerializepublic_ip_address() => __pbn__public_ip_address != null; - public void Resetpublic_ip_address() => __pbn__public_ip_address = null; - private uint? __pbn__public_ip_address; - - [global::ProtoBuf.ProtoMember(10)] - public uint port - { - get => __pbn__port.GetValueOrDefault(); - set => __pbn__port = value; - } - public bool ShouldSerializeport() => __pbn__port != null; - public void Resetport() => __pbn__port = null; - private uint? __pbn__port; - - [global::ProtoBuf.ProtoMember(11)] - public uint server_version - { - get => __pbn__server_version.GetValueOrDefault(); - set => __pbn__server_version = value; - } - public bool ShouldSerializeserver_version() => __pbn__server_version != null; - public void Resetserver_version() => __pbn__server_version = null; - private uint? __pbn__server_version; - - [global::ProtoBuf.ProtoMember(12)] - public uint pid - { - get => __pbn__pid.GetValueOrDefault(); - set => __pbn__pid = value; - } - public bool ShouldSerializepid() => __pbn__pid != null; - public void Resetpid() => __pbn__pid = null; - private uint? __pbn__pid; - - [global::ProtoBuf.ProtoMember(13)] - public uint instance_id - { - get => __pbn__instance_id.GetValueOrDefault(); - set => __pbn__instance_id = value; - } - public bool ShouldSerializeinstance_id() => __pbn__instance_id != null; - public void Resetinstance_id() => __pbn__instance_id = null; - private uint? __pbn__instance_id; - - [global::ProtoBuf.ProtoMember(14)] - public uint private_ip_address - { - get => __pbn__private_ip_address.GetValueOrDefault(); - set => __pbn__private_ip_address = value; - } - public bool ShouldSerializeprivate_ip_address() => __pbn__private_ip_address != null; - public void Resetprivate_ip_address() => __pbn__private_ip_address = null; - private uint? __pbn__private_ip_address; - - [global::ProtoBuf.ProtoContract()] - public partial class Player : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(2)] - public ulong additional_data - { - get => __pbn__additional_data.GetValueOrDefault(); - set => __pbn__additional_data = value; - } - public bool ShouldSerializeadditional_data() => __pbn__additional_data != null; - public void Resetadditional_data() => __pbn__additional_data = null; - private ulong? __pbn__additional_data; - - } - - [global::ProtoBuf.ProtoContract()] - public enum EReason - { - eReason_ServerCrash = 1, - eReason_ClientsFailedToConnect = 2, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerToGCAbandonMatchResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerToGCTestConnection : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerToGCTestConnectionResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint state - { - get => __pbn__state.GetValueOrDefault(); - set => __pbn__state = value; - } - public bool ShouldSerializestate() => __pbn__state != null; - public void Resetstate() => __pbn__state = null; - private uint? __pbn__state; - - [global::ProtoBuf.ProtoMember(2)] - public ulong lobby_id - { - get => __pbn__lobby_id.GetValueOrDefault(); - set => __pbn__lobby_id = value; - } - public bool ShouldSerializelobby_id() => __pbn__lobby_id != null; - public void Resetlobby_id() => __pbn__lobby_id = null; - private ulong? __pbn__lobby_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToServerAddTourneySpectator : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong lobby_id - { - get => __pbn__lobby_id.GetValueOrDefault(); - set => __pbn__lobby_id = value; - } - public bool ShouldSerializelobby_id() => __pbn__lobby_id != null; - public void Resetlobby_id() => __pbn__lobby_id = null; - private ulong? __pbn__lobby_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint account_id - { - get => __pbn__account_id.GetValueOrDefault(); - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint account_to_spectate_id - { - get => __pbn__account_to_spectate_id.GetValueOrDefault(); - set => __pbn__account_to_spectate_id = value; - } - public bool ShouldSerializeaccount_to_spectate_id() => __pbn__account_to_spectate_id != null; - public void Resetaccount_to_spectate_id() => __pbn__account_to_spectate_id = null; - private uint? __pbn__account_to_spectate_id; - - [global::ProtoBuf.ProtoMember(4)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToServerAddTourneySpectatorResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public bool success - { - get => __pbn__success.GetValueOrDefault(); - set => __pbn__success = value; - } - public bool ShouldSerializesuccess() => __pbn__success != null; - public void Resetsuccess() => __pbn__success = null; - private bool? __pbn__success; - - [global::ProtoBuf.ProtoMember(2)] - public ulong tourney_id - { - get => __pbn__tourney_id.GetValueOrDefault(); - set => __pbn__tourney_id = value; - } - public bool ShouldSerializetourney_id() => __pbn__tourney_id != null; - public void Resettourney_id() => __pbn__tourney_id = null; - private ulong? __pbn__tourney_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToServerRunTests : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint expected_version - { - get => __pbn__expected_version.GetValueOrDefault(); - set => __pbn__expected_version = value; - } - public bool ShouldSerializeexpected_version() => __pbn__expected_version != null; - public void Resetexpected_version() => __pbn__expected_version = null; - private uint? __pbn__expected_version; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCToServerRunTestsResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public bool running_tests - { - get => __pbn__running_tests.GetValueOrDefault(); - set => __pbn__running_tests = value; - } - public bool ShouldSerializerunning_tests() => __pbn__running_tests != null; - public void Resetrunning_tests() => __pbn__running_tests = null; - private bool? __pbn__running_tests; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgServerToGCTestResults : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List results { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(2)] - public uint server_version - { - get => __pbn__server_version.GetValueOrDefault(); - set => __pbn__server_version = value; - } - public bool ShouldSerializeserver_version() => __pbn__server_version != null; - public void Resetserver_version() => __pbn__server_version = null; - private uint? __pbn__server_version; - - [global::ProtoBuf.ProtoContract()] - public partial class TestResult : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue("")] - public string test_name - { - get => __pbn__test_name ?? ""; - set => __pbn__test_name = value; - } - public bool ShouldSerializetest_name() => __pbn__test_name != null; - public void Resettest_name() => __pbn__test_name = null; - private string __pbn__test_name; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string test_group - { - get => __pbn__test_group ?? ""; - set => __pbn__test_group = value; - } - public bool ShouldSerializetest_group() => __pbn__test_group != null; - public void Resettest_group() => __pbn__test_group = null; - private string __pbn__test_group; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue(CMsgServerToGCTestResults.ETestResult.eResult_Failure)] - public CMsgServerToGCTestResults.ETestResult test_result - { - get => __pbn__test_result ?? CMsgServerToGCTestResults.ETestResult.eResult_Failure; - set => __pbn__test_result = value; - } - public bool ShouldSerializetest_result() => __pbn__test_result != null; - public void Resettest_result() => __pbn__test_result = null; - private CMsgServerToGCTestResults.ETestResult? __pbn__test_result; - - } - - [global::ProtoBuf.ProtoContract()] - public enum ETestResult - { - eResult_Failure = 0, - eResult_Success = 1, - eResult_Disabled = 2, - } - - } - - [global::ProtoBuf.ProtoContract()] - public enum EGCDCGServerMessages - { - k_EMsgServerToGCMatchSignoutPermission = 10012, - k_EMsgServerToGCMatchSignoutPermissionResponse = 10013, - k_EMsgServerToGCMatchSignout = 10014, - k_EMsgServerToGCMatchSignoutResponse = 10015, - k_EMsgServerToGCIdlePing = 10018, - k_EMsgGCToServerRequestPing = 10019, - k_EMsgGCToServerAllocateForMatch = 10021, - k_EMsgGCToServerAllocateForMatchResponse = 10022, - k_EMsgServerToGCEnterMatchmaking = 10023, - k_EMsgGCToServerCancelAllocateForMatch = 10024, - k_EMsgServerToGCUpdateLobbyServerState = 10025, - k_EMsgServerToGCAbandonMatch = 10026, - k_EMsgServerToGCAbandonMatchResponse = 10027, - k_EMsgServerToGCTestConnection = 10028, - k_EMsgServerToGCTestConnectionResponse = 10029, - k_EMsgGCToServerRunTests = 10031, - k_EMsgGCToServerRunTestsResponse = 10032, - k_EMsgServerToGCTestResults = 10033, - k_EMsgGCToServerAddTourneySpectator = 10034, - k_EMsgGCToServerAddTourneySpectatorResponse = 10035, - } - - [global::ProtoBuf.ProtoContract()] - public enum EGCServerLobbyData - { - k_EServerLobbyData_DeckValidator = 1, - k_EServerLobbyData_DraftCards = 3, - k_EServerLobbyData_PlayerDeck = 4, - k_EServerLobbyData_PlayerMMR = 5, - k_EServerLobbyData_CardAchievements = 6, - k_EServerLobbyData_GauntletInfo = 7, - k_EServerLobbyData_PlayerInfo = 8, - } - - [global::ProtoBuf.ProtoContract()] - public enum EGCServerSignoutData - { - k_EServerSignoutData_PlayerProgress = 1, - k_EServerSignoutData_PlayerDecks = 2, - k_EServerSignoutData_LobbyInfo = 4, - k_EServerSignoutData_GameOptions = 9, - k_EServerSignoutData_CardAchievements = 11, - k_EServerSignoutData_PerformanceStats = 12, - k_EServerSignoutData_Disconnections = 13, - k_EServerSignoutData_MatchChatStats = 14, - } - -} - -#pragma warning restore CS0612, CS0618, CS1591, CS3021, IDE0079, IDE1006, RCS1036, RCS1057, RCS1085, RCS1192 -#endregion diff --git a/SteamKit2/SteamKit2/Base/Generated/GC/Artifact/SteamMsgBase.cs b/SteamKit2/SteamKit2/Base/Generated/GC/Artifact/SteamMsgBase.cs deleted file mode 100644 index 919f133d6..000000000 --- a/SteamKit2/SteamKit2/Base/Generated/GC/Artifact/SteamMsgBase.cs +++ /dev/null @@ -1,3707 +0,0 @@ -// -// This file was generated by a tool; you should avoid making direct changes. -// Consider using 'partial classes' to extend these types -// Input: steammessages.proto -// - -#region Designer generated code -#pragma warning disable CS0612, CS0618, CS1591, CS3021, IDE0079, IDE1006, RCS1036, RCS1057, RCS1085, RCS1192 -namespace SteamKit2.GC.Artifact.Internal -{ - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgProtoBufHeader : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong client_steam_id - { - get => __pbn__client_steam_id.GetValueOrDefault(); - set => __pbn__client_steam_id = value; - } - public bool ShouldSerializeclient_steam_id() => __pbn__client_steam_id != null; - public void Resetclient_steam_id() => __pbn__client_steam_id = null; - private ulong? __pbn__client_steam_id; - - [global::ProtoBuf.ProtoMember(2)] - public int client_session_id - { - get => __pbn__client_session_id.GetValueOrDefault(); - set => __pbn__client_session_id = value; - } - public bool ShouldSerializeclient_session_id() => __pbn__client_session_id != null; - public void Resetclient_session_id() => __pbn__client_session_id = null; - private int? __pbn__client_session_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint source_app_id - { - get => __pbn__source_app_id.GetValueOrDefault(); - set => __pbn__source_app_id = value; - } - public bool ShouldSerializesource_app_id() => __pbn__source_app_id != null; - public void Resetsource_app_id() => __pbn__source_app_id = null; - private uint? __pbn__source_app_id; - - [global::ProtoBuf.ProtoMember(10, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - [global::System.ComponentModel.DefaultValue(typeof(ulong), "18446744073709551615")] - public ulong job_id_source - { - get => __pbn__job_id_source ?? 18446744073709551615ul; - set => __pbn__job_id_source = value; - } - public bool ShouldSerializejob_id_source() => __pbn__job_id_source != null; - public void Resetjob_id_source() => __pbn__job_id_source = null; - private ulong? __pbn__job_id_source; - - [global::ProtoBuf.ProtoMember(11, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - [global::System.ComponentModel.DefaultValue(typeof(ulong), "18446744073709551615")] - public ulong job_id_target - { - get => __pbn__job_id_target ?? 18446744073709551615ul; - set => __pbn__job_id_target = value; - } - public bool ShouldSerializejob_id_target() => __pbn__job_id_target != null; - public void Resetjob_id_target() => __pbn__job_id_target = null; - private ulong? __pbn__job_id_target; - - [global::ProtoBuf.ProtoMember(12)] - [global::System.ComponentModel.DefaultValue("")] - public string target_job_name - { - get => __pbn__target_job_name ?? ""; - set => __pbn__target_job_name = value; - } - public bool ShouldSerializetarget_job_name() => __pbn__target_job_name != null; - public void Resettarget_job_name() => __pbn__target_job_name = null; - private string __pbn__target_job_name; - - [global::ProtoBuf.ProtoMember(13)] - [global::System.ComponentModel.DefaultValue(2)] - public int eresult - { - get => __pbn__eresult ?? 2; - set => __pbn__eresult = value; - } - public bool ShouldSerializeeresult() => __pbn__eresult != null; - public void Reseteresult() => __pbn__eresult = null; - private int? __pbn__eresult; - - [global::ProtoBuf.ProtoMember(14)] - [global::System.ComponentModel.DefaultValue("")] - public string error_message - { - get => __pbn__error_message ?? ""; - set => __pbn__error_message = value; - } - public bool ShouldSerializeerror_message() => __pbn__error_message != null; - public void Reseterror_message() => __pbn__error_message = null; - private string __pbn__error_message; - - [global::ProtoBuf.ProtoMember(200)] - [global::System.ComponentModel.DefaultValue(GCProtoBufMsgSrc.GCProtoBufMsgSrc_Unspecified)] - public GCProtoBufMsgSrc gc_msg_src - { - get => __pbn__gc_msg_src ?? GCProtoBufMsgSrc.GCProtoBufMsgSrc_Unspecified; - set => __pbn__gc_msg_src = value; - } - public bool ShouldSerializegc_msg_src() => __pbn__gc_msg_src != null; - public void Resetgc_msg_src() => __pbn__gc_msg_src = null; - private GCProtoBufMsgSrc? __pbn__gc_msg_src; - - [global::ProtoBuf.ProtoMember(201)] - public uint gc_dir_index_source - { - get => __pbn__gc_dir_index_source.GetValueOrDefault(); - set => __pbn__gc_dir_index_source = value; - } - public bool ShouldSerializegc_dir_index_source() => __pbn__gc_dir_index_source != null; - public void Resetgc_dir_index_source() => __pbn__gc_dir_index_source = null; - private uint? __pbn__gc_dir_index_source; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgWebAPIKey : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(255u)] - public uint status - { - get => __pbn__status ?? 255u; - set => __pbn__status = value; - } - public bool ShouldSerializestatus() => __pbn__status != null; - public void Resetstatus() => __pbn__status = null; - private uint? __pbn__status; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue(0u)] - public uint account_id - { - get => __pbn__account_id ?? 0u; - set => __pbn__account_id = value; - } - public bool ShouldSerializeaccount_id() => __pbn__account_id != null; - public void Resetaccount_id() => __pbn__account_id = null; - private uint? __pbn__account_id; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue(0u)] - public uint publisher_group_id - { - get => __pbn__publisher_group_id ?? 0u; - set => __pbn__publisher_group_id = value; - } - public bool ShouldSerializepublisher_group_id() => __pbn__publisher_group_id != null; - public void Resetpublisher_group_id() => __pbn__publisher_group_id = null; - private uint? __pbn__publisher_group_id; - - [global::ProtoBuf.ProtoMember(4)] - public uint key_id - { - get => __pbn__key_id.GetValueOrDefault(); - set => __pbn__key_id = value; - } - public bool ShouldSerializekey_id() => __pbn__key_id != null; - public void Resetkey_id() => __pbn__key_id = null; - private uint? __pbn__key_id; - - [global::ProtoBuf.ProtoMember(5)] - [global::System.ComponentModel.DefaultValue("")] - public string domain - { - get => __pbn__domain ?? ""; - set => __pbn__domain = value; - } - public bool ShouldSerializedomain() => __pbn__domain != null; - public void Resetdomain() => __pbn__domain = null; - private string __pbn__domain; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgHttpRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint request_method - { - get => __pbn__request_method.GetValueOrDefault(); - set => __pbn__request_method = value; - } - public bool ShouldSerializerequest_method() => __pbn__request_method != null; - public void Resetrequest_method() => __pbn__request_method = null; - private uint? __pbn__request_method; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string hostname - { - get => __pbn__hostname ?? ""; - set => __pbn__hostname = value; - } - public bool ShouldSerializehostname() => __pbn__hostname != null; - public void Resethostname() => __pbn__hostname = null; - private string __pbn__hostname; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue("")] - public string url - { - get => __pbn__url ?? ""; - set => __pbn__url = value; - } - public bool ShouldSerializeurl() => __pbn__url != null; - public void Reseturl() => __pbn__url = null; - private string __pbn__url; - - [global::ProtoBuf.ProtoMember(4)] - public global::System.Collections.Generic.List headers { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(5)] - public global::System.Collections.Generic.List get_params { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(6)] - public global::System.Collections.Generic.List post_params { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(7)] - public byte[] body - { - get => __pbn__body; - set => __pbn__body = value; - } - public bool ShouldSerializebody() => __pbn__body != null; - public void Resetbody() => __pbn__body = null; - private byte[] __pbn__body; - - [global::ProtoBuf.ProtoMember(8)] - public uint absolute_timeout - { - get => __pbn__absolute_timeout.GetValueOrDefault(); - set => __pbn__absolute_timeout = value; - } - public bool ShouldSerializeabsolute_timeout() => __pbn__absolute_timeout != null; - public void Resetabsolute_timeout() => __pbn__absolute_timeout = null; - private uint? __pbn__absolute_timeout; - - [global::ProtoBuf.ProtoContract()] - public partial class RequestHeader : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue("")] - public string name - { - get => __pbn__name ?? ""; - set => __pbn__name = value; - } - public bool ShouldSerializename() => __pbn__name != null; - public void Resetname() => __pbn__name = null; - private string __pbn__name; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string value - { - get => __pbn__value ?? ""; - set => __pbn__value = value; - } - public bool ShouldSerializevalue() => __pbn__value != null; - public void Resetvalue() => __pbn__value = null; - private string __pbn__value; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class QueryParam : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue("")] - public string name - { - get => __pbn__name ?? ""; - set => __pbn__name = value; - } - public bool ShouldSerializename() => __pbn__name != null; - public void Resetname() => __pbn__name = null; - private string __pbn__name; - - [global::ProtoBuf.ProtoMember(2)] - public byte[] value - { - get => __pbn__value; - set => __pbn__value = value; - } - public bool ShouldSerializevalue() => __pbn__value != null; - public void Resetvalue() => __pbn__value = null; - private byte[] __pbn__value; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgWebAPIRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue("")] - public string UNUSED_job_name - { - get => __pbn__UNUSED_job_name ?? ""; - set => __pbn__UNUSED_job_name = value; - } - public bool ShouldSerializeUNUSED_job_name() => __pbn__UNUSED_job_name != null; - public void ResetUNUSED_job_name() => __pbn__UNUSED_job_name = null; - private string __pbn__UNUSED_job_name; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string interface_name - { - get => __pbn__interface_name ?? ""; - set => __pbn__interface_name = value; - } - public bool ShouldSerializeinterface_name() => __pbn__interface_name != null; - public void Resetinterface_name() => __pbn__interface_name = null; - private string __pbn__interface_name; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue("")] - public string method_name - { - get => __pbn__method_name ?? ""; - set => __pbn__method_name = value; - } - public bool ShouldSerializemethod_name() => __pbn__method_name != null; - public void Resetmethod_name() => __pbn__method_name = null; - private string __pbn__method_name; - - [global::ProtoBuf.ProtoMember(4)] - public uint version - { - get => __pbn__version.GetValueOrDefault(); - set => __pbn__version = value; - } - public bool ShouldSerializeversion() => __pbn__version != null; - public void Resetversion() => __pbn__version = null; - private uint? __pbn__version; - - [global::ProtoBuf.ProtoMember(5)] - public CMsgWebAPIKey api_key { get; set; } - - [global::ProtoBuf.ProtoMember(6)] - public CMsgHttpRequest request { get; set; } - - [global::ProtoBuf.ProtoMember(7)] - public uint routing_app_id - { - get => __pbn__routing_app_id.GetValueOrDefault(); - set => __pbn__routing_app_id = value; - } - public bool ShouldSerializerouting_app_id() => __pbn__routing_app_id != null; - public void Resetrouting_app_id() => __pbn__routing_app_id = null; - private uint? __pbn__routing_app_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgHttpResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint status_code - { - get => __pbn__status_code.GetValueOrDefault(); - set => __pbn__status_code = value; - } - public bool ShouldSerializestatus_code() => __pbn__status_code != null; - public void Resetstatus_code() => __pbn__status_code = null; - private uint? __pbn__status_code; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List headers { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3)] - public byte[] body - { - get => __pbn__body; - set => __pbn__body = value; - } - public bool ShouldSerializebody() => __pbn__body != null; - public void Resetbody() => __pbn__body = null; - private byte[] __pbn__body; - - [global::ProtoBuf.ProtoContract()] - public partial class ResponseHeader : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue("")] - public string name - { - get => __pbn__name ?? ""; - set => __pbn__name = value; - } - public bool ShouldSerializename() => __pbn__name != null; - public void Resetname() => __pbn__name = null; - private string __pbn__name; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string value - { - get => __pbn__value ?? ""; - set => __pbn__value = value; - } - public bool ShouldSerializevalue() => __pbn__value != null; - public void Resetvalue() => __pbn__value = null; - private string __pbn__value; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgAMFindAccounts : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint search_type - { - get => __pbn__search_type.GetValueOrDefault(); - set => __pbn__search_type = value; - } - public bool ShouldSerializesearch_type() => __pbn__search_type != null; - public void Resetsearch_type() => __pbn__search_type = null; - private uint? __pbn__search_type; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string search_string - { - get => __pbn__search_string ?? ""; - set => __pbn__search_string = value; - } - public bool ShouldSerializesearch_string() => __pbn__search_string != null; - public void Resetsearch_string() => __pbn__search_string = null; - private string __pbn__search_string; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgAMFindAccountsResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public global::System.Collections.Generic.List steam_id { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgNotifyWatchdog : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint source - { - get => __pbn__source.GetValueOrDefault(); - set => __pbn__source = value; - } - public bool ShouldSerializesource() => __pbn__source != null; - public void Resetsource() => __pbn__source = null; - private uint? __pbn__source; - - [global::ProtoBuf.ProtoMember(2)] - public uint alert_type - { - get => __pbn__alert_type.GetValueOrDefault(); - set => __pbn__alert_type = value; - } - public bool ShouldSerializealert_type() => __pbn__alert_type != null; - public void Resetalert_type() => __pbn__alert_type = null; - private uint? __pbn__alert_type; - - [global::ProtoBuf.ProtoMember(4)] - public bool critical - { - get => __pbn__critical.GetValueOrDefault(); - set => __pbn__critical = value; - } - public bool ShouldSerializecritical() => __pbn__critical != null; - public void Resetcritical() => __pbn__critical = null; - private bool? __pbn__critical; - - [global::ProtoBuf.ProtoMember(5)] - public uint time - { - get => __pbn__time.GetValueOrDefault(); - set => __pbn__time = value; - } - public bool ShouldSerializetime() => __pbn__time != null; - public void Resettime() => __pbn__time = null; - private uint? __pbn__time; - - [global::ProtoBuf.ProtoMember(6)] - public uint appid - { - get => __pbn__appid.GetValueOrDefault(); - set => __pbn__appid = value; - } - public bool ShouldSerializeappid() => __pbn__appid != null; - public void Resetappid() => __pbn__appid = null; - private uint? __pbn__appid; - - [global::ProtoBuf.ProtoMember(7)] - [global::System.ComponentModel.DefaultValue("")] - public string text - { - get => __pbn__text ?? ""; - set => __pbn__text = value; - } - public bool ShouldSerializetext() => __pbn__text != null; - public void Resettext() => __pbn__text = null; - private string __pbn__text; - - [global::ProtoBuf.ProtoMember(12)] - [global::System.ComponentModel.DefaultValue("")] - public string recipient - { - get => __pbn__recipient ?? ""; - set => __pbn__recipient = value; - } - public bool ShouldSerializerecipient() => __pbn__recipient != null; - public void Resetrecipient() => __pbn__recipient = null; - private string __pbn__recipient; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgAMGetLicenses : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong steamid - { - get => __pbn__steamid.GetValueOrDefault(); - set => __pbn__steamid = value; - } - public bool ShouldSerializesteamid() => __pbn__steamid != null; - public void Resetsteamid() => __pbn__steamid = null; - private ulong? __pbn__steamid; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgPackageLicense : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint package_id - { - get => __pbn__package_id.GetValueOrDefault(); - set => __pbn__package_id = value; - } - public bool ShouldSerializepackage_id() => __pbn__package_id != null; - public void Resetpackage_id() => __pbn__package_id = null; - private uint? __pbn__package_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint time_created - { - get => __pbn__time_created.GetValueOrDefault(); - set => __pbn__time_created = value; - } - public bool ShouldSerializetime_created() => __pbn__time_created != null; - public void Resettime_created() => __pbn__time_created = null; - private uint? __pbn__time_created; - - [global::ProtoBuf.ProtoMember(3)] - public uint owner_id - { - get => __pbn__owner_id.GetValueOrDefault(); - set => __pbn__owner_id = value; - } - public bool ShouldSerializeowner_id() => __pbn__owner_id != null; - public void Resetowner_id() => __pbn__owner_id = null; - private uint? __pbn__owner_id; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgAMGetLicensesResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List license { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(2)] - public uint result - { - get => __pbn__result.GetValueOrDefault(); - set => __pbn__result = value; - } - public bool ShouldSerializeresult() => __pbn__result != null; - public void Resetresult() => __pbn__result = null; - private uint? __pbn__result; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgAMGetUserGameStats : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong steam_id - { - get => __pbn__steam_id.GetValueOrDefault(); - set => __pbn__steam_id = value; - } - public bool ShouldSerializesteam_id() => __pbn__steam_id != null; - public void Resetsteam_id() => __pbn__steam_id = null; - private ulong? __pbn__steam_id; - - [global::ProtoBuf.ProtoMember(2, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong game_id - { - get => __pbn__game_id.GetValueOrDefault(); - set => __pbn__game_id = value; - } - public bool ShouldSerializegame_id() => __pbn__game_id != null; - public void Resetgame_id() => __pbn__game_id = null; - private ulong? __pbn__game_id; - - [global::ProtoBuf.ProtoMember(3)] - public global::System.Collections.Generic.List stats { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgAMGetUserGameStatsResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong steam_id - { - get => __pbn__steam_id.GetValueOrDefault(); - set => __pbn__steam_id = value; - } - public bool ShouldSerializesteam_id() => __pbn__steam_id != null; - public void Resetsteam_id() => __pbn__steam_id = null; - private ulong? __pbn__steam_id; - - [global::ProtoBuf.ProtoMember(2, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong game_id - { - get => __pbn__game_id.GetValueOrDefault(); - set => __pbn__game_id = value; - } - public bool ShouldSerializegame_id() => __pbn__game_id != null; - public void Resetgame_id() => __pbn__game_id = null; - private ulong? __pbn__game_id; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue(2)] - public int eresult - { - get => __pbn__eresult ?? 2; - set => __pbn__eresult = value; - } - public bool ShouldSerializeeresult() => __pbn__eresult != null; - public void Reseteresult() => __pbn__eresult = null; - private int? __pbn__eresult; - - [global::ProtoBuf.ProtoMember(4)] - public global::System.Collections.Generic.List stats { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(5)] - public global::System.Collections.Generic.List achievement_blocks { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class Stats : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint stat_id - { - get => __pbn__stat_id.GetValueOrDefault(); - set => __pbn__stat_id = value; - } - public bool ShouldSerializestat_id() => __pbn__stat_id != null; - public void Resetstat_id() => __pbn__stat_id = null; - private uint? __pbn__stat_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint stat_value - { - get => __pbn__stat_value.GetValueOrDefault(); - set => __pbn__stat_value = value; - } - public bool ShouldSerializestat_value() => __pbn__stat_value != null; - public void Resetstat_value() => __pbn__stat_value = null; - private uint? __pbn__stat_value; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class Achievement_Blocks : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint achievement_id - { - get => __pbn__achievement_id.GetValueOrDefault(); - set => __pbn__achievement_id = value; - } - public bool ShouldSerializeachievement_id() => __pbn__achievement_id != null; - public void Resetachievement_id() => __pbn__achievement_id = null; - private uint? __pbn__achievement_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint achievement_bit_id - { - get => __pbn__achievement_bit_id.GetValueOrDefault(); - set => __pbn__achievement_bit_id = value; - } - public bool ShouldSerializeachievement_bit_id() => __pbn__achievement_bit_id != null; - public void Resetachievement_bit_id() => __pbn__achievement_bit_id = null; - private uint? __pbn__achievement_bit_id; - - [global::ProtoBuf.ProtoMember(3, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public uint unlock_time - { - get => __pbn__unlock_time.GetValueOrDefault(); - set => __pbn__unlock_time = value; - } - public bool ShouldSerializeunlock_time() => __pbn__unlock_time != null; - public void Resetunlock_time() => __pbn__unlock_time = null; - private uint? __pbn__unlock_time; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCGetCommandList : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint app_id - { - get => __pbn__app_id.GetValueOrDefault(); - set => __pbn__app_id = value; - } - public bool ShouldSerializeapp_id() => __pbn__app_id != null; - public void Resetapp_id() => __pbn__app_id = null; - private uint? __pbn__app_id; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string command_prefix - { - get => __pbn__command_prefix ?? ""; - set => __pbn__command_prefix = value; - } - public bool ShouldSerializecommand_prefix() => __pbn__command_prefix != null; - public void Resetcommand_prefix() => __pbn__command_prefix = null; - private string __pbn__command_prefix; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCGetCommandListResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List command_name { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCMsgMemCachedGet : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List keys { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCMsgMemCachedGetResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List values { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class ValueTag : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public bool found - { - get => __pbn__found.GetValueOrDefault(); - set => __pbn__found = value; - } - public bool ShouldSerializefound() => __pbn__found != null; - public void Resetfound() => __pbn__found = null; - private bool? __pbn__found; - - [global::ProtoBuf.ProtoMember(2)] - public byte[] value - { - get => __pbn__value; - set => __pbn__value = value; - } - public bool ShouldSerializevalue() => __pbn__value != null; - public void Resetvalue() => __pbn__value = null; - private byte[] __pbn__value; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCMsgMemCachedSet : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List keys { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class KeyPair : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue("")] - public string name - { - get => __pbn__name ?? ""; - set => __pbn__name = value; - } - public bool ShouldSerializename() => __pbn__name != null; - public void Resetname() => __pbn__name = null; - private string __pbn__name; - - [global::ProtoBuf.ProtoMember(2)] - public byte[] value - { - get => __pbn__value; - set => __pbn__value = value; - } - public bool ShouldSerializevalue() => __pbn__value != null; - public void Resetvalue() => __pbn__value = null; - private byte[] __pbn__value; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCMsgMemCachedDelete : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List keys { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCMsgMemCachedStats : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCMsgMemCachedStatsResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public ulong curr_connections - { - get => __pbn__curr_connections.GetValueOrDefault(); - set => __pbn__curr_connections = value; - } - public bool ShouldSerializecurr_connections() => __pbn__curr_connections != null; - public void Resetcurr_connections() => __pbn__curr_connections = null; - private ulong? __pbn__curr_connections; - - [global::ProtoBuf.ProtoMember(2)] - public ulong cmd_get - { - get => __pbn__cmd_get.GetValueOrDefault(); - set => __pbn__cmd_get = value; - } - public bool ShouldSerializecmd_get() => __pbn__cmd_get != null; - public void Resetcmd_get() => __pbn__cmd_get = null; - private ulong? __pbn__cmd_get; - - [global::ProtoBuf.ProtoMember(3)] - public ulong cmd_set - { - get => __pbn__cmd_set.GetValueOrDefault(); - set => __pbn__cmd_set = value; - } - public bool ShouldSerializecmd_set() => __pbn__cmd_set != null; - public void Resetcmd_set() => __pbn__cmd_set = null; - private ulong? __pbn__cmd_set; - - [global::ProtoBuf.ProtoMember(4)] - public ulong cmd_flush - { - get => __pbn__cmd_flush.GetValueOrDefault(); - set => __pbn__cmd_flush = value; - } - public bool ShouldSerializecmd_flush() => __pbn__cmd_flush != null; - public void Resetcmd_flush() => __pbn__cmd_flush = null; - private ulong? __pbn__cmd_flush; - - [global::ProtoBuf.ProtoMember(5)] - public ulong get_hits - { - get => __pbn__get_hits.GetValueOrDefault(); - set => __pbn__get_hits = value; - } - public bool ShouldSerializeget_hits() => __pbn__get_hits != null; - public void Resetget_hits() => __pbn__get_hits = null; - private ulong? __pbn__get_hits; - - [global::ProtoBuf.ProtoMember(6)] - public ulong get_misses - { - get => __pbn__get_misses.GetValueOrDefault(); - set => __pbn__get_misses = value; - } - public bool ShouldSerializeget_misses() => __pbn__get_misses != null; - public void Resetget_misses() => __pbn__get_misses = null; - private ulong? __pbn__get_misses; - - [global::ProtoBuf.ProtoMember(7)] - public ulong delete_hits - { - get => __pbn__delete_hits.GetValueOrDefault(); - set => __pbn__delete_hits = value; - } - public bool ShouldSerializedelete_hits() => __pbn__delete_hits != null; - public void Resetdelete_hits() => __pbn__delete_hits = null; - private ulong? __pbn__delete_hits; - - [global::ProtoBuf.ProtoMember(8)] - public ulong delete_misses - { - get => __pbn__delete_misses.GetValueOrDefault(); - set => __pbn__delete_misses = value; - } - public bool ShouldSerializedelete_misses() => __pbn__delete_misses != null; - public void Resetdelete_misses() => __pbn__delete_misses = null; - private ulong? __pbn__delete_misses; - - [global::ProtoBuf.ProtoMember(9)] - public ulong bytes_read - { - get => __pbn__bytes_read.GetValueOrDefault(); - set => __pbn__bytes_read = value; - } - public bool ShouldSerializebytes_read() => __pbn__bytes_read != null; - public void Resetbytes_read() => __pbn__bytes_read = null; - private ulong? __pbn__bytes_read; - - [global::ProtoBuf.ProtoMember(10)] - public ulong bytes_written - { - get => __pbn__bytes_written.GetValueOrDefault(); - set => __pbn__bytes_written = value; - } - public bool ShouldSerializebytes_written() => __pbn__bytes_written != null; - public void Resetbytes_written() => __pbn__bytes_written = null; - private ulong? __pbn__bytes_written; - - [global::ProtoBuf.ProtoMember(11)] - public ulong limit_maxbytes - { - get => __pbn__limit_maxbytes.GetValueOrDefault(); - set => __pbn__limit_maxbytes = value; - } - public bool ShouldSerializelimit_maxbytes() => __pbn__limit_maxbytes != null; - public void Resetlimit_maxbytes() => __pbn__limit_maxbytes = null; - private ulong? __pbn__limit_maxbytes; - - [global::ProtoBuf.ProtoMember(12)] - public ulong curr_items - { - get => __pbn__curr_items.GetValueOrDefault(); - set => __pbn__curr_items = value; - } - public bool ShouldSerializecurr_items() => __pbn__curr_items != null; - public void Resetcurr_items() => __pbn__curr_items = null; - private ulong? __pbn__curr_items; - - [global::ProtoBuf.ProtoMember(13)] - public ulong evictions - { - get => __pbn__evictions.GetValueOrDefault(); - set => __pbn__evictions = value; - } - public bool ShouldSerializeevictions() => __pbn__evictions != null; - public void Resetevictions() => __pbn__evictions = null; - private ulong? __pbn__evictions; - - [global::ProtoBuf.ProtoMember(14)] - public ulong bytes - { - get => __pbn__bytes.GetValueOrDefault(); - set => __pbn__bytes = value; - } - public bool ShouldSerializebytes() => __pbn__bytes != null; - public void Resetbytes() => __pbn__bytes = null; - private ulong? __pbn__bytes; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCMsgSQLStats : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint schema_catalog - { - get => __pbn__schema_catalog.GetValueOrDefault(); - set => __pbn__schema_catalog = value; - } - public bool ShouldSerializeschema_catalog() => __pbn__schema_catalog != null; - public void Resetschema_catalog() => __pbn__schema_catalog = null; - private uint? __pbn__schema_catalog; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCMsgSQLStatsResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint threads - { - get => __pbn__threads.GetValueOrDefault(); - set => __pbn__threads = value; - } - public bool ShouldSerializethreads() => __pbn__threads != null; - public void Resetthreads() => __pbn__threads = null; - private uint? __pbn__threads; - - [global::ProtoBuf.ProtoMember(2)] - public uint threads_connected - { - get => __pbn__threads_connected.GetValueOrDefault(); - set => __pbn__threads_connected = value; - } - public bool ShouldSerializethreads_connected() => __pbn__threads_connected != null; - public void Resetthreads_connected() => __pbn__threads_connected = null; - private uint? __pbn__threads_connected; - - [global::ProtoBuf.ProtoMember(3)] - public uint threads_active - { - get => __pbn__threads_active.GetValueOrDefault(); - set => __pbn__threads_active = value; - } - public bool ShouldSerializethreads_active() => __pbn__threads_active != null; - public void Resetthreads_active() => __pbn__threads_active = null; - private uint? __pbn__threads_active; - - [global::ProtoBuf.ProtoMember(4)] - public uint operations_submitted - { - get => __pbn__operations_submitted.GetValueOrDefault(); - set => __pbn__operations_submitted = value; - } - public bool ShouldSerializeoperations_submitted() => __pbn__operations_submitted != null; - public void Resetoperations_submitted() => __pbn__operations_submitted = null; - private uint? __pbn__operations_submitted; - - [global::ProtoBuf.ProtoMember(5)] - public uint prepared_statements_executed - { - get => __pbn__prepared_statements_executed.GetValueOrDefault(); - set => __pbn__prepared_statements_executed = value; - } - public bool ShouldSerializeprepared_statements_executed() => __pbn__prepared_statements_executed != null; - public void Resetprepared_statements_executed() => __pbn__prepared_statements_executed = null; - private uint? __pbn__prepared_statements_executed; - - [global::ProtoBuf.ProtoMember(6)] - public uint non_prepared_statements_executed - { - get => __pbn__non_prepared_statements_executed.GetValueOrDefault(); - set => __pbn__non_prepared_statements_executed = value; - } - public bool ShouldSerializenon_prepared_statements_executed() => __pbn__non_prepared_statements_executed != null; - public void Resetnon_prepared_statements_executed() => __pbn__non_prepared_statements_executed = null; - private uint? __pbn__non_prepared_statements_executed; - - [global::ProtoBuf.ProtoMember(7)] - public uint deadlock_retries - { - get => __pbn__deadlock_retries.GetValueOrDefault(); - set => __pbn__deadlock_retries = value; - } - public bool ShouldSerializedeadlock_retries() => __pbn__deadlock_retries != null; - public void Resetdeadlock_retries() => __pbn__deadlock_retries = null; - private uint? __pbn__deadlock_retries; - - [global::ProtoBuf.ProtoMember(8)] - public uint operations_timed_out_in_queue - { - get => __pbn__operations_timed_out_in_queue.GetValueOrDefault(); - set => __pbn__operations_timed_out_in_queue = value; - } - public bool ShouldSerializeoperations_timed_out_in_queue() => __pbn__operations_timed_out_in_queue != null; - public void Resetoperations_timed_out_in_queue() => __pbn__operations_timed_out_in_queue = null; - private uint? __pbn__operations_timed_out_in_queue; - - [global::ProtoBuf.ProtoMember(9)] - public uint errors - { - get => __pbn__errors.GetValueOrDefault(); - set => __pbn__errors = value; - } - public bool ShouldSerializeerrors() => __pbn__errors != null; - public void Reseterrors() => __pbn__errors = null; - private uint? __pbn__errors; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgAMAddFreeLicense : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong steamid - { - get => __pbn__steamid.GetValueOrDefault(); - set => __pbn__steamid = value; - } - public bool ShouldSerializesteamid() => __pbn__steamid != null; - public void Resetsteamid() => __pbn__steamid = null; - private ulong? __pbn__steamid; - - [global::ProtoBuf.ProtoMember(2)] - public uint ip_public - { - get => __pbn__ip_public.GetValueOrDefault(); - set => __pbn__ip_public = value; - } - public bool ShouldSerializeip_public() => __pbn__ip_public != null; - public void Resetip_public() => __pbn__ip_public = null; - private uint? __pbn__ip_public; - - [global::ProtoBuf.ProtoMember(3)] - public uint packageid - { - get => __pbn__packageid.GetValueOrDefault(); - set => __pbn__packageid = value; - } - public bool ShouldSerializepackageid() => __pbn__packageid != null; - public void Resetpackageid() => __pbn__packageid = null; - private uint? __pbn__packageid; - - [global::ProtoBuf.ProtoMember(4)] - [global::System.ComponentModel.DefaultValue("")] - public string store_country_code - { - get => __pbn__store_country_code ?? ""; - set => __pbn__store_country_code = value; - } - public bool ShouldSerializestore_country_code() => __pbn__store_country_code != null; - public void Resetstore_country_code() => __pbn__store_country_code = null; - private string __pbn__store_country_code; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgAMAddFreeLicenseResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(2)] - public int eresult - { - get => __pbn__eresult ?? 2; - set => __pbn__eresult = value; - } - public bool ShouldSerializeeresult() => __pbn__eresult != null; - public void Reseteresult() => __pbn__eresult = null; - private int? __pbn__eresult; - - [global::ProtoBuf.ProtoMember(2)] - public int purchase_result_detail - { - get => __pbn__purchase_result_detail.GetValueOrDefault(); - set => __pbn__purchase_result_detail = value; - } - public bool ShouldSerializepurchase_result_detail() => __pbn__purchase_result_detail != null; - public void Resetpurchase_result_detail() => __pbn__purchase_result_detail = null; - private int? __pbn__purchase_result_detail; - - [global::ProtoBuf.ProtoMember(3, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong transid - { - get => __pbn__transid.GetValueOrDefault(); - set => __pbn__transid = value; - } - public bool ShouldSerializetransid() => __pbn__transid != null; - public void Resettransid() => __pbn__transid = null; - private ulong? __pbn__transid; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCMsgGetIPLocation : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public global::System.Collections.Generic.List ips { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CIPLocationInfo : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint ip - { - get => __pbn__ip.GetValueOrDefault(); - set => __pbn__ip = value; - } - public bool ShouldSerializeip() => __pbn__ip != null; - public void Resetip() => __pbn__ip = null; - private uint? __pbn__ip; - - [global::ProtoBuf.ProtoMember(2)] - public float latitude - { - get => __pbn__latitude.GetValueOrDefault(); - set => __pbn__latitude = value; - } - public bool ShouldSerializelatitude() => __pbn__latitude != null; - public void Resetlatitude() => __pbn__latitude = null; - private float? __pbn__latitude; - - [global::ProtoBuf.ProtoMember(3)] - public float longitude - { - get => __pbn__longitude.GetValueOrDefault(); - set => __pbn__longitude = value; - } - public bool ShouldSerializelongitude() => __pbn__longitude != null; - public void Resetlongitude() => __pbn__longitude = null; - private float? __pbn__longitude; - - [global::ProtoBuf.ProtoMember(4)] - [global::System.ComponentModel.DefaultValue("")] - public string country - { - get => __pbn__country ?? ""; - set => __pbn__country = value; - } - public bool ShouldSerializecountry() => __pbn__country != null; - public void Resetcountry() => __pbn__country = null; - private string __pbn__country; - - [global::ProtoBuf.ProtoMember(5)] - [global::System.ComponentModel.DefaultValue("")] - public string state - { - get => __pbn__state ?? ""; - set => __pbn__state = value; - } - public bool ShouldSerializestate() => __pbn__state != null; - public void Resetstate() => __pbn__state = null; - private string __pbn__state; - - [global::ProtoBuf.ProtoMember(6)] - [global::System.ComponentModel.DefaultValue("")] - public string city - { - get => __pbn__city ?? ""; - set => __pbn__city = value; - } - public bool ShouldSerializecity() => __pbn__city != null; - public void Resetcity() => __pbn__city = null; - private string __pbn__city; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCMsgGetIPLocationResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List infos { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCMsgGetIPASN : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public global::System.Collections.Generic.List ips { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CIPASNInfo : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public uint ip - { - get => __pbn__ip.GetValueOrDefault(); - set => __pbn__ip = value; - } - public bool ShouldSerializeip() => __pbn__ip != null; - public void Resetip() => __pbn__ip = null; - private uint? __pbn__ip; - - [global::ProtoBuf.ProtoMember(2)] - public uint asn - { - get => __pbn__asn.GetValueOrDefault(); - set => __pbn__asn = value; - } - public bool ShouldSerializeasn() => __pbn__asn != null; - public void Resetasn() => __pbn__asn = null; - private uint? __pbn__asn; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCMsgGetIPASNResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List infos { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCMsgSystemStatsSchema : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint gc_app_id - { - get => __pbn__gc_app_id.GetValueOrDefault(); - set => __pbn__gc_app_id = value; - } - public bool ShouldSerializegc_app_id() => __pbn__gc_app_id != null; - public void Resetgc_app_id() => __pbn__gc_app_id = null; - private uint? __pbn__gc_app_id; - - [global::ProtoBuf.ProtoMember(2)] - public byte[] schema_kv - { - get => __pbn__schema_kv; - set => __pbn__schema_kv = value; - } - public bool ShouldSerializeschema_kv() => __pbn__schema_kv != null; - public void Resetschema_kv() => __pbn__schema_kv = null; - private byte[] __pbn__schema_kv; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCMsgGetSystemStats : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCMsgGetSystemStatsResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint gc_app_id - { - get => __pbn__gc_app_id.GetValueOrDefault(); - set => __pbn__gc_app_id = value; - } - public bool ShouldSerializegc_app_id() => __pbn__gc_app_id != null; - public void Resetgc_app_id() => __pbn__gc_app_id = null; - private uint? __pbn__gc_app_id; - - [global::ProtoBuf.ProtoMember(2)] - public byte[] stats_kv - { - get => __pbn__stats_kv; - set => __pbn__stats_kv = value; - } - public bool ShouldSerializestats_kv() => __pbn__stats_kv != null; - public void Resetstats_kv() => __pbn__stats_kv = null; - private byte[] __pbn__stats_kv; - - [global::ProtoBuf.ProtoMember(3)] - public uint active_jobs - { - get => __pbn__active_jobs.GetValueOrDefault(); - set => __pbn__active_jobs = value; - } - public bool ShouldSerializeactive_jobs() => __pbn__active_jobs != null; - public void Resetactive_jobs() => __pbn__active_jobs = null; - private uint? __pbn__active_jobs; - - [global::ProtoBuf.ProtoMember(4)] - public uint yielding_jobs - { - get => __pbn__yielding_jobs.GetValueOrDefault(); - set => __pbn__yielding_jobs = value; - } - public bool ShouldSerializeyielding_jobs() => __pbn__yielding_jobs != null; - public void Resetyielding_jobs() => __pbn__yielding_jobs = null; - private uint? __pbn__yielding_jobs; - - [global::ProtoBuf.ProtoMember(5)] - public uint user_sessions - { - get => __pbn__user_sessions.GetValueOrDefault(); - set => __pbn__user_sessions = value; - } - public bool ShouldSerializeuser_sessions() => __pbn__user_sessions != null; - public void Resetuser_sessions() => __pbn__user_sessions = null; - private uint? __pbn__user_sessions; - - [global::ProtoBuf.ProtoMember(6)] - public uint game_server_sessions - { - get => __pbn__game_server_sessions.GetValueOrDefault(); - set => __pbn__game_server_sessions = value; - } - public bool ShouldSerializegame_server_sessions() => __pbn__game_server_sessions != null; - public void Resetgame_server_sessions() => __pbn__game_server_sessions = null; - private uint? __pbn__game_server_sessions; - - [global::ProtoBuf.ProtoMember(7)] - public uint socaches - { - get => __pbn__socaches.GetValueOrDefault(); - set => __pbn__socaches = value; - } - public bool ShouldSerializesocaches() => __pbn__socaches != null; - public void Resetsocaches() => __pbn__socaches = null; - private uint? __pbn__socaches; - - [global::ProtoBuf.ProtoMember(8)] - public uint socaches_to_unload - { - get => __pbn__socaches_to_unload.GetValueOrDefault(); - set => __pbn__socaches_to_unload = value; - } - public bool ShouldSerializesocaches_to_unload() => __pbn__socaches_to_unload != null; - public void Resetsocaches_to_unload() => __pbn__socaches_to_unload = null; - private uint? __pbn__socaches_to_unload; - - [global::ProtoBuf.ProtoMember(9)] - public uint socaches_loading - { - get => __pbn__socaches_loading.GetValueOrDefault(); - set => __pbn__socaches_loading = value; - } - public bool ShouldSerializesocaches_loading() => __pbn__socaches_loading != null; - public void Resetsocaches_loading() => __pbn__socaches_loading = null; - private uint? __pbn__socaches_loading; - - [global::ProtoBuf.ProtoMember(10)] - public uint writeback_queue - { - get => __pbn__writeback_queue.GetValueOrDefault(); - set => __pbn__writeback_queue = value; - } - public bool ShouldSerializewriteback_queue() => __pbn__writeback_queue != null; - public void Resetwriteback_queue() => __pbn__writeback_queue = null; - private uint? __pbn__writeback_queue; - - [global::ProtoBuf.ProtoMember(11)] - public uint steamid_locks - { - get => __pbn__steamid_locks.GetValueOrDefault(); - set => __pbn__steamid_locks = value; - } - public bool ShouldSerializesteamid_locks() => __pbn__steamid_locks != null; - public void Resetsteamid_locks() => __pbn__steamid_locks = null; - private uint? __pbn__steamid_locks; - - [global::ProtoBuf.ProtoMember(12)] - public uint logon_queue - { - get => __pbn__logon_queue.GetValueOrDefault(); - set => __pbn__logon_queue = value; - } - public bool ShouldSerializelogon_queue() => __pbn__logon_queue != null; - public void Resetlogon_queue() => __pbn__logon_queue = null; - private uint? __pbn__logon_queue; - - [global::ProtoBuf.ProtoMember(13)] - public uint logon_jobs - { - get => __pbn__logon_jobs.GetValueOrDefault(); - set => __pbn__logon_jobs = value; - } - public bool ShouldSerializelogon_jobs() => __pbn__logon_jobs != null; - public void Resetlogon_jobs() => __pbn__logon_jobs = null; - private uint? __pbn__logon_jobs; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgAMSendEmail : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong steamid - { - get => __pbn__steamid.GetValueOrDefault(); - set => __pbn__steamid = value; - } - public bool ShouldSerializesteamid() => __pbn__steamid != null; - public void Resetsteamid() => __pbn__steamid = null; - private ulong? __pbn__steamid; - - [global::ProtoBuf.ProtoMember(2)] - public uint email_msg_type - { - get => __pbn__email_msg_type.GetValueOrDefault(); - set => __pbn__email_msg_type = value; - } - public bool ShouldSerializeemail_msg_type() => __pbn__email_msg_type != null; - public void Resetemail_msg_type() => __pbn__email_msg_type = null; - private uint? __pbn__email_msg_type; - - [global::ProtoBuf.ProtoMember(3)] - public uint email_format - { - get => __pbn__email_format.GetValueOrDefault(); - set => __pbn__email_format = value; - } - public bool ShouldSerializeemail_format() => __pbn__email_format != null; - public void Resetemail_format() => __pbn__email_format = null; - private uint? __pbn__email_format; - - [global::ProtoBuf.ProtoMember(5)] - public global::System.Collections.Generic.List persona_name_tokens { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(6)] - public uint source_gc - { - get => __pbn__source_gc.GetValueOrDefault(); - set => __pbn__source_gc = value; - } - public bool ShouldSerializesource_gc() => __pbn__source_gc != null; - public void Resetsource_gc() => __pbn__source_gc = null; - private uint? __pbn__source_gc; - - [global::ProtoBuf.ProtoMember(7)] - public global::System.Collections.Generic.List tokens { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class ReplacementToken : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue("")] - public string token_name - { - get => __pbn__token_name ?? ""; - set => __pbn__token_name = value; - } - public bool ShouldSerializetoken_name() => __pbn__token_name != null; - public void Resettoken_name() => __pbn__token_name = null; - private string __pbn__token_name; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string token_value - { - get => __pbn__token_value ?? ""; - set => __pbn__token_value = value; - } - public bool ShouldSerializetoken_value() => __pbn__token_value != null; - public void Resettoken_value() => __pbn__token_value = null; - private string __pbn__token_value; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class PersonaNameReplacementToken : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong steamid - { - get => __pbn__steamid.GetValueOrDefault(); - set => __pbn__steamid = value; - } - public bool ShouldSerializesteamid() => __pbn__steamid != null; - public void Resetsteamid() => __pbn__steamid = null; - private ulong? __pbn__steamid; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string token_name - { - get => __pbn__token_name ?? ""; - set => __pbn__token_name = value; - } - public bool ShouldSerializetoken_name() => __pbn__token_name != null; - public void Resettoken_name() => __pbn__token_name = null; - private string __pbn__token_name; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgAMSendEmailResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(2u)] - public uint eresult - { - get => __pbn__eresult ?? 2u; - set => __pbn__eresult = value; - } - public bool ShouldSerializeeresult() => __pbn__eresult != null; - public void Reseteresult() => __pbn__eresult = null; - private uint? __pbn__eresult; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCGetEmailTemplate : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint app_id - { - get => __pbn__app_id.GetValueOrDefault(); - set => __pbn__app_id = value; - } - public bool ShouldSerializeapp_id() => __pbn__app_id != null; - public void Resetapp_id() => __pbn__app_id = null; - private uint? __pbn__app_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint email_msg_type - { - get => __pbn__email_msg_type.GetValueOrDefault(); - set => __pbn__email_msg_type = value; - } - public bool ShouldSerializeemail_msg_type() => __pbn__email_msg_type != null; - public void Resetemail_msg_type() => __pbn__email_msg_type = null; - private uint? __pbn__email_msg_type; - - [global::ProtoBuf.ProtoMember(3)] - public int email_lang - { - get => __pbn__email_lang.GetValueOrDefault(); - set => __pbn__email_lang = value; - } - public bool ShouldSerializeemail_lang() => __pbn__email_lang != null; - public void Resetemail_lang() => __pbn__email_lang = null; - private int? __pbn__email_lang; - - [global::ProtoBuf.ProtoMember(4)] - public int email_format - { - get => __pbn__email_format.GetValueOrDefault(); - set => __pbn__email_format = value; - } - public bool ShouldSerializeemail_format() => __pbn__email_format != null; - public void Resetemail_format() => __pbn__email_format = null; - private int? __pbn__email_format; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCGetEmailTemplateResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(2u)] - public uint eresult - { - get => __pbn__eresult ?? 2u; - set => __pbn__eresult = value; - } - public bool ShouldSerializeeresult() => __pbn__eresult != null; - public void Reseteresult() => __pbn__eresult = null; - private uint? __pbn__eresult; - - [global::ProtoBuf.ProtoMember(2)] - public bool template_exists - { - get => __pbn__template_exists.GetValueOrDefault(); - set => __pbn__template_exists = value; - } - public bool ShouldSerializetemplate_exists() => __pbn__template_exists != null; - public void Resettemplate_exists() => __pbn__template_exists = null; - private bool? __pbn__template_exists; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue("")] - public string template - { - get => __pbn__template ?? ""; - set => __pbn__template = value; - } - public bool ShouldSerializetemplate() => __pbn__template != null; - public void Resettemplate() => __pbn__template = null; - private string __pbn__template; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgAMGrantGuestPasses2 : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong steam_id - { - get => __pbn__steam_id.GetValueOrDefault(); - set => __pbn__steam_id = value; - } - public bool ShouldSerializesteam_id() => __pbn__steam_id != null; - public void Resetsteam_id() => __pbn__steam_id = null; - private ulong? __pbn__steam_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint package_id - { - get => __pbn__package_id.GetValueOrDefault(); - set => __pbn__package_id = value; - } - public bool ShouldSerializepackage_id() => __pbn__package_id != null; - public void Resetpackage_id() => __pbn__package_id = null; - private uint? __pbn__package_id; - - [global::ProtoBuf.ProtoMember(3)] - public int passes_to_grant - { - get => __pbn__passes_to_grant.GetValueOrDefault(); - set => __pbn__passes_to_grant = value; - } - public bool ShouldSerializepasses_to_grant() => __pbn__passes_to_grant != null; - public void Resetpasses_to_grant() => __pbn__passes_to_grant = null; - private int? __pbn__passes_to_grant; - - [global::ProtoBuf.ProtoMember(4)] - public int days_to_expiration - { - get => __pbn__days_to_expiration.GetValueOrDefault(); - set => __pbn__days_to_expiration = value; - } - public bool ShouldSerializedays_to_expiration() => __pbn__days_to_expiration != null; - public void Resetdays_to_expiration() => __pbn__days_to_expiration = null; - private int? __pbn__days_to_expiration; - - [global::ProtoBuf.ProtoMember(5)] - public int action - { - get => __pbn__action.GetValueOrDefault(); - set => __pbn__action = value; - } - public bool ShouldSerializeaction() => __pbn__action != null; - public void Resetaction() => __pbn__action = null; - private int? __pbn__action; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgAMGrantGuestPasses2Response : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(2)] - public int eresult - { - get => __pbn__eresult ?? 2; - set => __pbn__eresult = value; - } - public bool ShouldSerializeeresult() => __pbn__eresult != null; - public void Reseteresult() => __pbn__eresult = null; - private int? __pbn__eresult; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue(0)] - public int passes_granted - { - get => __pbn__passes_granted ?? 0; - set => __pbn__passes_granted = value; - } - public bool ShouldSerializepasses_granted() => __pbn__passes_granted != null; - public void Resetpasses_granted() => __pbn__passes_granted = null; - private int? __pbn__passes_granted; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCSystemMsg_GetAccountDetails : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong steamid - { - get => __pbn__steamid.GetValueOrDefault(); - set => __pbn__steamid = value; - } - public bool ShouldSerializesteamid() => __pbn__steamid != null; - public void Resetsteamid() => __pbn__steamid = null; - private ulong? __pbn__steamid; - - [global::ProtoBuf.ProtoMember(2)] - public uint appid - { - get => __pbn__appid.GetValueOrDefault(); - set => __pbn__appid = value; - } - public bool ShouldSerializeappid() => __pbn__appid != null; - public void Resetappid() => __pbn__appid = null; - private uint? __pbn__appid; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCSystemMsg_GetAccountDetails_Response : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(2u)] - public uint eresult_deprecated - { - get => __pbn__eresult_deprecated ?? 2u; - set => __pbn__eresult_deprecated = value; - } - public bool ShouldSerializeeresult_deprecated() => __pbn__eresult_deprecated != null; - public void Reseteresult_deprecated() => __pbn__eresult_deprecated = null; - private uint? __pbn__eresult_deprecated; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string account_name - { - get => __pbn__account_name ?? ""; - set => __pbn__account_name = value; - } - public bool ShouldSerializeaccount_name() => __pbn__account_name != null; - public void Resetaccount_name() => __pbn__account_name = null; - private string __pbn__account_name; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue("")] - public string persona_name - { - get => __pbn__persona_name ?? ""; - set => __pbn__persona_name = value; - } - public bool ShouldSerializepersona_name() => __pbn__persona_name != null; - public void Resetpersona_name() => __pbn__persona_name = null; - private string __pbn__persona_name; - - [global::ProtoBuf.ProtoMember(26)] - public bool is_profile_created - { - get => __pbn__is_profile_created.GetValueOrDefault(); - set => __pbn__is_profile_created = value; - } - public bool ShouldSerializeis_profile_created() => __pbn__is_profile_created != null; - public void Resetis_profile_created() => __pbn__is_profile_created = null; - private bool? __pbn__is_profile_created; - - [global::ProtoBuf.ProtoMember(4)] - public bool is_profile_public - { - get => __pbn__is_profile_public.GetValueOrDefault(); - set => __pbn__is_profile_public = value; - } - public bool ShouldSerializeis_profile_public() => __pbn__is_profile_public != null; - public void Resetis_profile_public() => __pbn__is_profile_public = null; - private bool? __pbn__is_profile_public; - - [global::ProtoBuf.ProtoMember(5)] - public bool is_inventory_public - { - get => __pbn__is_inventory_public.GetValueOrDefault(); - set => __pbn__is_inventory_public = value; - } - public bool ShouldSerializeis_inventory_public() => __pbn__is_inventory_public != null; - public void Resetis_inventory_public() => __pbn__is_inventory_public = null; - private bool? __pbn__is_inventory_public; - - [global::ProtoBuf.ProtoMember(7)] - public bool is_vac_banned - { - get => __pbn__is_vac_banned.GetValueOrDefault(); - set => __pbn__is_vac_banned = value; - } - public bool ShouldSerializeis_vac_banned() => __pbn__is_vac_banned != null; - public void Resetis_vac_banned() => __pbn__is_vac_banned = null; - private bool? __pbn__is_vac_banned; - - [global::ProtoBuf.ProtoMember(8)] - public bool is_cyber_cafe - { - get => __pbn__is_cyber_cafe.GetValueOrDefault(); - set => __pbn__is_cyber_cafe = value; - } - public bool ShouldSerializeis_cyber_cafe() => __pbn__is_cyber_cafe != null; - public void Resetis_cyber_cafe() => __pbn__is_cyber_cafe = null; - private bool? __pbn__is_cyber_cafe; - - [global::ProtoBuf.ProtoMember(9)] - public bool is_school_account - { - get => __pbn__is_school_account.GetValueOrDefault(); - set => __pbn__is_school_account = value; - } - public bool ShouldSerializeis_school_account() => __pbn__is_school_account != null; - public void Resetis_school_account() => __pbn__is_school_account = null; - private bool? __pbn__is_school_account; - - [global::ProtoBuf.ProtoMember(10)] - public bool is_limited - { - get => __pbn__is_limited.GetValueOrDefault(); - set => __pbn__is_limited = value; - } - public bool ShouldSerializeis_limited() => __pbn__is_limited != null; - public void Resetis_limited() => __pbn__is_limited = null; - private bool? __pbn__is_limited; - - [global::ProtoBuf.ProtoMember(11)] - public bool is_subscribed - { - get => __pbn__is_subscribed.GetValueOrDefault(); - set => __pbn__is_subscribed = value; - } - public bool ShouldSerializeis_subscribed() => __pbn__is_subscribed != null; - public void Resetis_subscribed() => __pbn__is_subscribed = null; - private bool? __pbn__is_subscribed; - - [global::ProtoBuf.ProtoMember(12)] - public uint package - { - get => __pbn__package.GetValueOrDefault(); - set => __pbn__package = value; - } - public bool ShouldSerializepackage() => __pbn__package != null; - public void Resetpackage() => __pbn__package = null; - private uint? __pbn__package; - - [global::ProtoBuf.ProtoMember(13)] - public bool is_free_trial_account - { - get => __pbn__is_free_trial_account.GetValueOrDefault(); - set => __pbn__is_free_trial_account = value; - } - public bool ShouldSerializeis_free_trial_account() => __pbn__is_free_trial_account != null; - public void Resetis_free_trial_account() => __pbn__is_free_trial_account = null; - private bool? __pbn__is_free_trial_account; - - [global::ProtoBuf.ProtoMember(14)] - public uint free_trial_expiration - { - get => __pbn__free_trial_expiration.GetValueOrDefault(); - set => __pbn__free_trial_expiration = value; - } - public bool ShouldSerializefree_trial_expiration() => __pbn__free_trial_expiration != null; - public void Resetfree_trial_expiration() => __pbn__free_trial_expiration = null; - private uint? __pbn__free_trial_expiration; - - [global::ProtoBuf.ProtoMember(15)] - public bool is_low_violence - { - get => __pbn__is_low_violence.GetValueOrDefault(); - set => __pbn__is_low_violence = value; - } - public bool ShouldSerializeis_low_violence() => __pbn__is_low_violence != null; - public void Resetis_low_violence() => __pbn__is_low_violence = null; - private bool? __pbn__is_low_violence; - - [global::ProtoBuf.ProtoMember(16)] - public bool is_account_locked_down - { - get => __pbn__is_account_locked_down.GetValueOrDefault(); - set => __pbn__is_account_locked_down = value; - } - public bool ShouldSerializeis_account_locked_down() => __pbn__is_account_locked_down != null; - public void Resetis_account_locked_down() => __pbn__is_account_locked_down = null; - private bool? __pbn__is_account_locked_down; - - [global::ProtoBuf.ProtoMember(17)] - public bool is_community_banned - { - get => __pbn__is_community_banned.GetValueOrDefault(); - set => __pbn__is_community_banned = value; - } - public bool ShouldSerializeis_community_banned() => __pbn__is_community_banned != null; - public void Resetis_community_banned() => __pbn__is_community_banned = null; - private bool? __pbn__is_community_banned; - - [global::ProtoBuf.ProtoMember(18)] - public bool is_trade_banned - { - get => __pbn__is_trade_banned.GetValueOrDefault(); - set => __pbn__is_trade_banned = value; - } - public bool ShouldSerializeis_trade_banned() => __pbn__is_trade_banned != null; - public void Resetis_trade_banned() => __pbn__is_trade_banned = null; - private bool? __pbn__is_trade_banned; - - [global::ProtoBuf.ProtoMember(19)] - public uint trade_ban_expiration - { - get => __pbn__trade_ban_expiration.GetValueOrDefault(); - set => __pbn__trade_ban_expiration = value; - } - public bool ShouldSerializetrade_ban_expiration() => __pbn__trade_ban_expiration != null; - public void Resettrade_ban_expiration() => __pbn__trade_ban_expiration = null; - private uint? __pbn__trade_ban_expiration; - - [global::ProtoBuf.ProtoMember(20)] - public uint accountid - { - get => __pbn__accountid.GetValueOrDefault(); - set => __pbn__accountid = value; - } - public bool ShouldSerializeaccountid() => __pbn__accountid != null; - public void Resetaccountid() => __pbn__accountid = null; - private uint? __pbn__accountid; - - [global::ProtoBuf.ProtoMember(21)] - public uint suspension_end_time - { - get => __pbn__suspension_end_time.GetValueOrDefault(); - set => __pbn__suspension_end_time = value; - } - public bool ShouldSerializesuspension_end_time() => __pbn__suspension_end_time != null; - public void Resetsuspension_end_time() => __pbn__suspension_end_time = null; - private uint? __pbn__suspension_end_time; - - [global::ProtoBuf.ProtoMember(22)] - [global::System.ComponentModel.DefaultValue("")] - public string currency - { - get => __pbn__currency ?? ""; - set => __pbn__currency = value; - } - public bool ShouldSerializecurrency() => __pbn__currency != null; - public void Resetcurrency() => __pbn__currency = null; - private string __pbn__currency; - - [global::ProtoBuf.ProtoMember(23)] - public uint steam_level - { - get => __pbn__steam_level.GetValueOrDefault(); - set => __pbn__steam_level = value; - } - public bool ShouldSerializesteam_level() => __pbn__steam_level != null; - public void Resetsteam_level() => __pbn__steam_level = null; - private uint? __pbn__steam_level; - - [global::ProtoBuf.ProtoMember(24)] - public uint friend_count - { - get => __pbn__friend_count.GetValueOrDefault(); - set => __pbn__friend_count = value; - } - public bool ShouldSerializefriend_count() => __pbn__friend_count != null; - public void Resetfriend_count() => __pbn__friend_count = null; - private uint? __pbn__friend_count; - - [global::ProtoBuf.ProtoMember(25)] - public uint account_creation_time - { - get => __pbn__account_creation_time.GetValueOrDefault(); - set => __pbn__account_creation_time = value; - } - public bool ShouldSerializeaccount_creation_time() => __pbn__account_creation_time != null; - public void Resetaccount_creation_time() => __pbn__account_creation_time = null; - private uint? __pbn__account_creation_time; - - [global::ProtoBuf.ProtoMember(27)] - public bool is_steamguard_enabled - { - get => __pbn__is_steamguard_enabled.GetValueOrDefault(); - set => __pbn__is_steamguard_enabled = value; - } - public bool ShouldSerializeis_steamguard_enabled() => __pbn__is_steamguard_enabled != null; - public void Resetis_steamguard_enabled() => __pbn__is_steamguard_enabled = null; - private bool? __pbn__is_steamguard_enabled; - - [global::ProtoBuf.ProtoMember(28)] - public bool is_phone_verified - { - get => __pbn__is_phone_verified.GetValueOrDefault(); - set => __pbn__is_phone_verified = value; - } - public bool ShouldSerializeis_phone_verified() => __pbn__is_phone_verified != null; - public void Resetis_phone_verified() => __pbn__is_phone_verified = null; - private bool? __pbn__is_phone_verified; - - [global::ProtoBuf.ProtoMember(29)] - public bool is_two_factor_auth_enabled - { - get => __pbn__is_two_factor_auth_enabled.GetValueOrDefault(); - set => __pbn__is_two_factor_auth_enabled = value; - } - public bool ShouldSerializeis_two_factor_auth_enabled() => __pbn__is_two_factor_auth_enabled != null; - public void Resetis_two_factor_auth_enabled() => __pbn__is_two_factor_auth_enabled = null; - private bool? __pbn__is_two_factor_auth_enabled; - - [global::ProtoBuf.ProtoMember(30)] - public uint two_factor_enabled_time - { - get => __pbn__two_factor_enabled_time.GetValueOrDefault(); - set => __pbn__two_factor_enabled_time = value; - } - public bool ShouldSerializetwo_factor_enabled_time() => __pbn__two_factor_enabled_time != null; - public void Resettwo_factor_enabled_time() => __pbn__two_factor_enabled_time = null; - private uint? __pbn__two_factor_enabled_time; - - [global::ProtoBuf.ProtoMember(31)] - public uint phone_verification_time - { - get => __pbn__phone_verification_time.GetValueOrDefault(); - set => __pbn__phone_verification_time = value; - } - public bool ShouldSerializephone_verification_time() => __pbn__phone_verification_time != null; - public void Resetphone_verification_time() => __pbn__phone_verification_time = null; - private uint? __pbn__phone_verification_time; - - [global::ProtoBuf.ProtoMember(33)] - public ulong phone_id - { - get => __pbn__phone_id.GetValueOrDefault(); - set => __pbn__phone_id = value; - } - public bool ShouldSerializephone_id() => __pbn__phone_id != null; - public void Resetphone_id() => __pbn__phone_id = null; - private ulong? __pbn__phone_id; - - [global::ProtoBuf.ProtoMember(34)] - public bool is_phone_identifying - { - get => __pbn__is_phone_identifying.GetValueOrDefault(); - set => __pbn__is_phone_identifying = value; - } - public bool ShouldSerializeis_phone_identifying() => __pbn__is_phone_identifying != null; - public void Resetis_phone_identifying() => __pbn__is_phone_identifying = null; - private bool? __pbn__is_phone_identifying; - - [global::ProtoBuf.ProtoMember(35)] - public uint rt_identity_linked - { - get => __pbn__rt_identity_linked.GetValueOrDefault(); - set => __pbn__rt_identity_linked = value; - } - public bool ShouldSerializert_identity_linked() => __pbn__rt_identity_linked != null; - public void Resetrt_identity_linked() => __pbn__rt_identity_linked = null; - private uint? __pbn__rt_identity_linked; - - [global::ProtoBuf.ProtoMember(36)] - public uint rt_birth_date - { - get => __pbn__rt_birth_date.GetValueOrDefault(); - set => __pbn__rt_birth_date = value; - } - public bool ShouldSerializert_birth_date() => __pbn__rt_birth_date != null; - public void Resetrt_birth_date() => __pbn__rt_birth_date = null; - private uint? __pbn__rt_birth_date; - - [global::ProtoBuf.ProtoMember(37)] - [global::System.ComponentModel.DefaultValue("")] - public string txn_country_code - { - get => __pbn__txn_country_code ?? ""; - set => __pbn__txn_country_code = value; - } - public bool ShouldSerializetxn_country_code() => __pbn__txn_country_code != null; - public void Resettxn_country_code() => __pbn__txn_country_code = null; - private string __pbn__txn_country_code; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCGetPersonaNames : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public global::System.Collections.Generic.List steamids { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCGetPersonaNames_Response : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List succeeded_lookups { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(2, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public global::System.Collections.Generic.List failed_lookup_steamids { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class PersonaName : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong steamid - { - get => __pbn__steamid.GetValueOrDefault(); - set => __pbn__steamid = value; - } - public bool ShouldSerializesteamid() => __pbn__steamid != null; - public void Resetsteamid() => __pbn__steamid = null; - private ulong? __pbn__steamid; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string persona_name - { - get => __pbn__persona_name ?? ""; - set => __pbn__persona_name = value; - } - public bool ShouldSerializepersona_name() => __pbn__persona_name != null; - public void Resetpersona_name() => __pbn__persona_name = null; - private string __pbn__persona_name; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCCheckFriendship : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong steamid_left - { - get => __pbn__steamid_left.GetValueOrDefault(); - set => __pbn__steamid_left = value; - } - public bool ShouldSerializesteamid_left() => __pbn__steamid_left != null; - public void Resetsteamid_left() => __pbn__steamid_left = null; - private ulong? __pbn__steamid_left; - - [global::ProtoBuf.ProtoMember(2, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong steamid_right - { - get => __pbn__steamid_right.GetValueOrDefault(); - set => __pbn__steamid_right = value; - } - public bool ShouldSerializesteamid_right() => __pbn__steamid_right != null; - public void Resetsteamid_right() => __pbn__steamid_right = null; - private ulong? __pbn__steamid_right; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCCheckFriendship_Response : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public bool success - { - get => __pbn__success.GetValueOrDefault(); - set => __pbn__success = value; - } - public bool ShouldSerializesuccess() => __pbn__success != null; - public void Resetsuccess() => __pbn__success = null; - private bool? __pbn__success; - - [global::ProtoBuf.ProtoMember(2)] - public bool found_friendship - { - get => __pbn__found_friendship.GetValueOrDefault(); - set => __pbn__found_friendship = value; - } - public bool ShouldSerializefound_friendship() => __pbn__found_friendship != null; - public void Resetfound_friendship() => __pbn__found_friendship = null; - private bool? __pbn__found_friendship; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCGetAppFriendsList : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong steamid - { - get => __pbn__steamid.GetValueOrDefault(); - set => __pbn__steamid = value; - } - public bool ShouldSerializesteamid() => __pbn__steamid != null; - public void Resetsteamid() => __pbn__steamid = null; - private ulong? __pbn__steamid; - - [global::ProtoBuf.ProtoMember(2)] - public bool include_friendship_timestamps - { - get => __pbn__include_friendship_timestamps.GetValueOrDefault(); - set => __pbn__include_friendship_timestamps = value; - } - public bool ShouldSerializeinclude_friendship_timestamps() => __pbn__include_friendship_timestamps != null; - public void Resetinclude_friendship_timestamps() => __pbn__include_friendship_timestamps = null; - private bool? __pbn__include_friendship_timestamps; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCGetAppFriendsList_Response : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public bool success - { - get => __pbn__success.GetValueOrDefault(); - set => __pbn__success = value; - } - public bool ShouldSerializesuccess() => __pbn__success != null; - public void Resetsuccess() => __pbn__success = null; - private bool? __pbn__success; - - [global::ProtoBuf.ProtoMember(2, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public global::System.Collections.Generic.List steamids { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public global::System.Collections.Generic.List friendship_timestamps { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(4, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public global::System.Collections.Generic.List last_playtimes { get; } = new global::System.Collections.Generic.List(); - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCMsgMasterSetDirectory : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint master_dir_index - { - get => __pbn__master_dir_index.GetValueOrDefault(); - set => __pbn__master_dir_index = value; - } - public bool ShouldSerializemaster_dir_index() => __pbn__master_dir_index != null; - public void Resetmaster_dir_index() => __pbn__master_dir_index = null; - private uint? __pbn__master_dir_index; - - [global::ProtoBuf.ProtoMember(2)] - public global::System.Collections.Generic.List dir { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class SubGC : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint dir_index - { - get => __pbn__dir_index.GetValueOrDefault(); - set => __pbn__dir_index = value; - } - public bool ShouldSerializedir_index() => __pbn__dir_index != null; - public void Resetdir_index() => __pbn__dir_index = null; - private uint? __pbn__dir_index; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string name - { - get => __pbn__name ?? ""; - set => __pbn__name = value; - } - public bool ShouldSerializename() => __pbn__name != null; - public void Resetname() => __pbn__name = null; - private string __pbn__name; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue("")] - public string box - { - get => __pbn__box ?? ""; - set => __pbn__box = value; - } - public bool ShouldSerializebox() => __pbn__box != null; - public void Resetbox() => __pbn__box = null; - private string __pbn__box; - - [global::ProtoBuf.ProtoMember(4)] - [global::System.ComponentModel.DefaultValue("")] - public string command_line - { - get => __pbn__command_line ?? ""; - set => __pbn__command_line = value; - } - public bool ShouldSerializecommand_line() => __pbn__command_line != null; - public void Resetcommand_line() => __pbn__command_line = null; - private string __pbn__command_line; - - [global::ProtoBuf.ProtoMember(5)] - [global::System.ComponentModel.DefaultValue("")] - public string gc_binary - { - get => __pbn__gc_binary ?? ""; - set => __pbn__gc_binary = value; - } - public bool ShouldSerializegc_binary() => __pbn__gc_binary != null; - public void Resetgc_binary() => __pbn__gc_binary = null; - private string __pbn__gc_binary; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCMsgMasterSetDirectory_Response : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(2)] - public int eresult - { - get => __pbn__eresult ?? 2; - set => __pbn__eresult = value; - } - public bool ShouldSerializeeresult() => __pbn__eresult != null; - public void Reseteresult() => __pbn__eresult = null; - private int? __pbn__eresult; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string message - { - get => __pbn__message ?? ""; - set => __pbn__message = value; - } - public bool ShouldSerializemessage() => __pbn__message != null; - public void Resetmessage() => __pbn__message = null; - private string __pbn__message; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCMsgWebAPIJobRequestForwardResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint dir_index - { - get => __pbn__dir_index.GetValueOrDefault(); - set => __pbn__dir_index = value; - } - public bool ShouldSerializedir_index() => __pbn__dir_index != null; - public void Resetdir_index() => __pbn__dir_index = null; - private uint? __pbn__dir_index; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCSystemMsg_GetPurchaseTrust_Request : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong steamid - { - get => __pbn__steamid.GetValueOrDefault(); - set => __pbn__steamid = value; - } - public bool ShouldSerializesteamid() => __pbn__steamid != null; - public void Resetsteamid() => __pbn__steamid = null; - private ulong? __pbn__steamid; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CGCSystemMsg_GetPurchaseTrust_Response : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public bool has_prior_purchase_history - { - get => __pbn__has_prior_purchase_history.GetValueOrDefault(); - set => __pbn__has_prior_purchase_history = value; - } - public bool ShouldSerializehas_prior_purchase_history() => __pbn__has_prior_purchase_history != null; - public void Resethas_prior_purchase_history() => __pbn__has_prior_purchase_history = null; - private bool? __pbn__has_prior_purchase_history; - - [global::ProtoBuf.ProtoMember(2)] - public bool has_no_recent_password_resets - { - get => __pbn__has_no_recent_password_resets.GetValueOrDefault(); - set => __pbn__has_no_recent_password_resets = value; - } - public bool ShouldSerializehas_no_recent_password_resets() => __pbn__has_no_recent_password_resets != null; - public void Resethas_no_recent_password_resets() => __pbn__has_no_recent_password_resets = null; - private bool? __pbn__has_no_recent_password_resets; - - [global::ProtoBuf.ProtoMember(3)] - public bool is_wallet_cash_trusted - { - get => __pbn__is_wallet_cash_trusted.GetValueOrDefault(); - set => __pbn__is_wallet_cash_trusted = value; - } - public bool ShouldSerializeis_wallet_cash_trusted() => __pbn__is_wallet_cash_trusted != null; - public void Resetis_wallet_cash_trusted() => __pbn__is_wallet_cash_trusted = null; - private bool? __pbn__is_wallet_cash_trusted; - - [global::ProtoBuf.ProtoMember(4)] - public uint time_all_trusted - { - get => __pbn__time_all_trusted.GetValueOrDefault(); - set => __pbn__time_all_trusted = value; - } - public bool ShouldSerializetime_all_trusted() => __pbn__time_all_trusted != null; - public void Resettime_all_trusted() => __pbn__time_all_trusted = null; - private uint? __pbn__time_all_trusted; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCHAccountVacStatusChange : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong steam_id - { - get => __pbn__steam_id.GetValueOrDefault(); - set => __pbn__steam_id = value; - } - public bool ShouldSerializesteam_id() => __pbn__steam_id != null; - public void Resetsteam_id() => __pbn__steam_id = null; - private ulong? __pbn__steam_id; - - [global::ProtoBuf.ProtoMember(2)] - public uint app_id - { - get => __pbn__app_id.GetValueOrDefault(); - set => __pbn__app_id = value; - } - public bool ShouldSerializeapp_id() => __pbn__app_id != null; - public void Resetapp_id() => __pbn__app_id = null; - private uint? __pbn__app_id; - - [global::ProtoBuf.ProtoMember(3)] - public uint rtime_vacban_starts - { - get => __pbn__rtime_vacban_starts.GetValueOrDefault(); - set => __pbn__rtime_vacban_starts = value; - } - public bool ShouldSerializertime_vacban_starts() => __pbn__rtime_vacban_starts != null; - public void Resetrtime_vacban_starts() => __pbn__rtime_vacban_starts = null; - private uint? __pbn__rtime_vacban_starts; - - [global::ProtoBuf.ProtoMember(4)] - public bool is_banned_now - { - get => __pbn__is_banned_now.GetValueOrDefault(); - set => __pbn__is_banned_now = value; - } - public bool ShouldSerializeis_banned_now() => __pbn__is_banned_now != null; - public void Resetis_banned_now() => __pbn__is_banned_now = null; - private bool? __pbn__is_banned_now; - - [global::ProtoBuf.ProtoMember(5)] - public bool is_banned_future - { - get => __pbn__is_banned_future.GetValueOrDefault(); - set => __pbn__is_banned_future = value; - } - public bool ShouldSerializeis_banned_future() => __pbn__is_banned_future != null; - public void Resetis_banned_future() => __pbn__is_banned_future = null; - private bool? __pbn__is_banned_future; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCGetPartnerAccountLink : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, DataFormat = global::ProtoBuf.DataFormat.FixedSize)] - public ulong steamid - { - get => __pbn__steamid.GetValueOrDefault(); - set => __pbn__steamid = value; - } - public bool ShouldSerializesteamid() => __pbn__steamid != null; - public void Resetsteamid() => __pbn__steamid = null; - private ulong? __pbn__steamid; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCGetPartnerAccountLink_Response : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint pwid - { - get => __pbn__pwid.GetValueOrDefault(); - set => __pbn__pwid = value; - } - public bool ShouldSerializepwid() => __pbn__pwid != null; - public void Resetpwid() => __pbn__pwid = null; - private uint? __pbn__pwid; - - [global::ProtoBuf.ProtoMember(2)] - public uint nexonid - { - get => __pbn__nexonid.GetValueOrDefault(); - set => __pbn__nexonid = value; - } - public bool ShouldSerializenexonid() => __pbn__nexonid != null; - public void Resetnexonid() => __pbn__nexonid = null; - private uint? __pbn__nexonid; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCRoutingInfo : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List dir_index { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue(RoutingMethod.RANDOM)] - public RoutingMethod method - { - get => __pbn__method ?? RoutingMethod.RANDOM; - set => __pbn__method = value; - } - public bool ShouldSerializemethod() => __pbn__method != null; - public void Resetmethod() => __pbn__method = null; - private RoutingMethod? __pbn__method; - - [global::ProtoBuf.ProtoMember(3)] - [global::System.ComponentModel.DefaultValue(RoutingMethod.DISCARD)] - public RoutingMethod fallback - { - get => __pbn__fallback ?? RoutingMethod.DISCARD; - set => __pbn__fallback = value; - } - public bool ShouldSerializefallback() => __pbn__fallback != null; - public void Resetfallback() => __pbn__fallback = null; - private RoutingMethod? __pbn__fallback; - - [global::ProtoBuf.ProtoMember(4)] - public uint protobuf_field - { - get => __pbn__protobuf_field.GetValueOrDefault(); - set => __pbn__protobuf_field = value; - } - public bool ShouldSerializeprotobuf_field() => __pbn__protobuf_field != null; - public void Resetprotobuf_field() => __pbn__protobuf_field = null; - private uint? __pbn__protobuf_field; - - [global::ProtoBuf.ProtoMember(5)] - [global::System.ComponentModel.DefaultValue("")] - public string webapi_param - { - get => __pbn__webapi_param ?? ""; - set => __pbn__webapi_param = value; - } - public bool ShouldSerializewebapi_param() => __pbn__webapi_param != null; - public void Resetwebapi_param() => __pbn__webapi_param = null; - private string __pbn__webapi_param; - - [global::ProtoBuf.ProtoContract()] - public enum RoutingMethod - { - RANDOM = 0, - DISCARD = 1, - CLIENT_STEAMID = 2, - PROTOBUF_FIELD_UINT64 = 3, - WEBAPI_PARAM = 4, - WEBAPI_PARAM_STEAMID_ACCOUNTID = 5, - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCMsgMasterSetWebAPIRouting : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List entries { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class Entry : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue("")] - public string interface_name - { - get => __pbn__interface_name ?? ""; - set => __pbn__interface_name = value; - } - public bool ShouldSerializeinterface_name() => __pbn__interface_name != null; - public void Resetinterface_name() => __pbn__interface_name = null; - private string __pbn__interface_name; - - [global::ProtoBuf.ProtoMember(2)] - [global::System.ComponentModel.DefaultValue("")] - public string method_name - { - get => __pbn__method_name ?? ""; - set => __pbn__method_name = value; - } - public bool ShouldSerializemethod_name() => __pbn__method_name != null; - public void Resetmethod_name() => __pbn__method_name = null; - private string __pbn__method_name; - - [global::ProtoBuf.ProtoMember(3)] - public CMsgGCRoutingInfo routing { get; set; } - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCMsgMasterSetClientMsgRouting : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List entries { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class Entry : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public uint msg_type - { - get => __pbn__msg_type.GetValueOrDefault(); - set => __pbn__msg_type = value; - } - public bool ShouldSerializemsg_type() => __pbn__msg_type != null; - public void Resetmsg_type() => __pbn__msg_type = null; - private uint? __pbn__msg_type; - - [global::ProtoBuf.ProtoMember(2)] - public CMsgGCRoutingInfo routing { get; set; } - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCMsgMasterSetWebAPIRouting_Response : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(2)] - public int eresult - { - get => __pbn__eresult ?? 2; - set => __pbn__eresult = value; - } - public bool ShouldSerializeeresult() => __pbn__eresult != null; - public void Reseteresult() => __pbn__eresult = null; - private int? __pbn__eresult; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCMsgMasterSetClientMsgRouting_Response : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - [global::System.ComponentModel.DefaultValue(2)] - public int eresult - { - get => __pbn__eresult ?? 2; - set => __pbn__eresult = value; - } - public bool ShouldSerializeeresult() => __pbn__eresult != null; - public void Reseteresult() => __pbn__eresult = null; - private int? __pbn__eresult; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CMsgGCMsgSetOptions : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1)] - public global::System.Collections.Generic.List