├── .gitignore ├── README.md ├── example ├── AssemblyInfo.cs ├── Global.cs ├── HoopoeTelegram.csproj ├── HoopoeTelegram.csproj.user ├── HoopoeTelegram.sln ├── HoopoeTelegram │ ├── Class_Date.cs │ ├── Class_Files_And_Folders.cs │ ├── Class_Window_Control.cs │ ├── FormUpload.cs │ ├── GlobalCrypto.cs │ ├── HardWare.cs │ ├── Main.Designer.cs │ ├── Main.cs │ ├── Main.resx │ ├── Program.cs │ ├── Properties │ │ ├── Resources.cs │ │ └── Settings.cs │ ├── Queue.cs │ ├── appState.cs │ ├── frmDeliveryReport.cs │ ├── frmDeliveryReport.resx │ ├── frmMsgReceiver.cs │ ├── frmMsgReceiver.resx │ ├── frmNewAcc.cs │ └── frmNewAcc.resx ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── app.manifest ├── Resources │ ├── ajax-loader.gif │ ├── aminated-talking-people@2x.gif │ ├── loading (1).gif │ ├── rocket.gif │ ├── search.gif │ ├── start-button.gif │ └── xfiles.ttf ├── app.config └── hoopoe.ico └── library ├── compile ├── _api.dll ├── _api57.dll ├── _api57_with_actor.dll ├── _api66.dll └── dependency │ ├── IKVM.AWT.WinForms.dll │ ├── IKVM.OpenJDK.Beans.dll │ ├── IKVM.OpenJDK.Charsets.dll │ ├── IKVM.OpenJDK.Cldrdata.dll │ ├── IKVM.OpenJDK.Corba.dll │ ├── IKVM.OpenJDK.Core.dll │ ├── IKVM.OpenJDK.Jdbc.dll │ ├── IKVM.OpenJDK.Localedata.dll │ ├── IKVM.OpenJDK.Management.dll │ ├── IKVM.OpenJDK.Media.dll │ ├── IKVM.OpenJDK.Misc.dll │ ├── IKVM.OpenJDK.Naming.dll │ ├── IKVM.OpenJDK.Nashorn.dll │ ├── IKVM.OpenJDK.Remoting.dll │ ├── IKVM.OpenJDK.Security.dll │ ├── IKVM.OpenJDK.SwingAWT.dll │ ├── IKVM.OpenJDK.Text.dll │ ├── IKVM.OpenJDK.Tools.dll │ ├── IKVM.OpenJDK.Util.dll │ ├── IKVM.OpenJDK.XML.API.dll │ ├── IKVM.OpenJDK.XML.Bind.dll │ ├── IKVM.OpenJDK.XML.Crypto.dll │ ├── IKVM.OpenJDK.XML.Parse.dll │ ├── IKVM.OpenJDK.XML.Transform.dll │ ├── IKVM.OpenJDK.XML.WebServices.dll │ ├── IKVM.OpenJDK.XML.XPath.dll │ ├── IKVM.Reflection.dll │ ├── IKVM.Runtime.JNI.dll │ └── IKVM.Runtime.dll └── source ├── AssemblyInfo.cs ├── Global.cs ├── _api66.csproj ├── _api66.jar ├── engine └── MemoryApiState.cs ├── ikvm.exports ├── ir └── telegramp │ ├── IUpdatesHandler.cs │ ├── JarPath.cs │ ├── MimeTypeMap.cs │ ├── MyLogger.cs │ ├── PhoneModels.cs │ ├── Roozh.cs │ ├── UpdateWrapper.cs │ ├── UpdatesHandlerBase.cs │ ├── WarAndPeace.cs │ └── telegramApi.cs ├── jawnae └── pyronet │ ├── ByteStream.cs │ ├── PyroClient.cs │ ├── PyroClientAdapter.cs │ ├── PyroClientListener.cs │ ├── PyroException.cs │ └── PyroSelector.cs └── org └── telegram ├── api ├── TLApiContext.cs ├── TLAuthorization.cs ├── TLConfig.cs ├── TLDataJSON.cs ├── TLDcOption.cs ├── TLHighScore.cs ├── TLNearestDc.cs ├── TLReceivedNotifyMessage.cs ├── account │ ├── TLAbsAccountPassword.cs │ ├── TLAccountAuthorizations.cs │ ├── TLAccountDaysTTL.cs │ ├── TLAccountNoPassword.cs │ ├── TLAccountPassword.cs │ ├── TLAccountPasswordInputSettings.cs │ ├── TLAccountPasswordSettings.cs │ ├── TLAccountPrivacyRules.cs │ └── TLAccountTmpPassword.cs ├── auth │ ├── TLAuthorization.cs │ ├── TLCheckedPhone.cs │ ├── TLExportedAuthorization.cs │ ├── TLPasswordRecovery.cs │ ├── TLSentCode.cs │ ├── codetype │ │ ├── TLAbsCodeType.cs │ │ ├── TLCodeTypeCall.cs │ │ ├── TLCodeTypeFlashCall.cs │ │ └── TLCodeTypeSms.cs │ └── sentcodetype │ │ ├── TLAbsSentCodeType.cs │ │ ├── TLSentCodeTypeApp.cs │ │ ├── TLSentCodeTypeCall.cs │ │ ├── TLSentCodeTypeFlashCall.cs │ │ └── TLSentCodeTypeSms.cs ├── bot │ ├── TLBotCommand.cs │ ├── TLBotInfo.cs │ ├── TLInlineBotSwitchPm.cs │ ├── inlinemessage │ │ ├── TLAbsBotInlineMessage.cs │ │ ├── TLBotInlineMessageMediaAuto.cs │ │ ├── TLBotInlineMessageMediaContact.cs │ │ ├── TLBotInlineMessageMediaGeo.cs │ │ ├── TLBotInlineMessageMediaVenue.cs │ │ └── TLBotInlineMessageText.cs │ └── inlineresult │ │ ├── TLAbsBotInlineResult.cs │ │ ├── TLBotInlineMediaResult.cs │ │ └── TLBotInlineResult.cs ├── cdn │ ├── TLCdnConfig.cs │ └── TLCdnPublicKey.cs ├── channel │ ├── TLChannelParticipant.cs │ ├── TLChannelParticipants.cs │ ├── filters │ │ ├── TLAbsChannelMessagesFilter.cs │ │ ├── TLChannelMessagesFilter.cs │ │ └── TLChannelMessagesFilterEmpty.cs │ └── participants │ │ ├── TLAbsChannelParticipant.cs │ │ ├── TLChannelParticipant.cs │ │ ├── TLChannelParticipantCreator.cs │ │ ├── TLChannelParticipantEditor.cs │ │ ├── TLChannelParticipantKicked.cs │ │ ├── TLChannelParticipantModerator.cs │ │ ├── TLChannelParticipantSelf.cs │ │ ├── filters │ │ ├── TLAbsChannelParticipantsFilter.cs │ │ ├── TLChannelParticipantsFilterAdmins.cs │ │ ├── TLChannelParticipantsFilterBots.cs │ │ ├── TLChannelParticipantsFilterKicked.cs │ │ └── TLChannelParticipantsFilterRecent.cs │ │ └── role │ │ ├── TLAbsChannelParticipantRole.cs │ │ ├── TLChannelParticipantRoleEditor.cs │ │ ├── TLChannelParticipantRoleEmpty.cs │ │ └── TLChannelParticipantRoleModerator.cs ├── chat │ ├── TLAbsChat.cs │ ├── TLAbsChatFull.cs │ ├── TLChat.cs │ ├── TLChatEmpty.cs │ ├── TLChatForbidden.cs │ ├── TLChatFull.cs │ ├── channel │ │ ├── TLChannel.cs │ │ ├── TLChannelForbidden.cs │ │ └── TLChannelFull.cs │ ├── invite │ │ ├── TLAbsChatInvite.cs │ │ ├── TLChatInvite.cs │ │ ├── TLChatInviteAlready.cs │ │ ├── TLChatInviteEmpty.cs │ │ └── TLChatInviteExported.cs │ ├── participant │ │ ├── chatparticipant │ │ │ ├── TLAbsChatParticipant.cs │ │ │ ├── TLChatParticipant.cs │ │ │ ├── TLChatParticipantAdmin.cs │ │ │ └── TLChatParticipantCreator.cs │ │ └── chatparticipants │ │ │ ├── TLAbsChatParticipants.cs │ │ │ ├── TLChatParticipants.cs │ │ │ └── TLChatParticipantsForbidden.cs │ └── photo │ │ ├── TLAbsChatPhoto.cs │ │ ├── TLChatPhoto.cs │ │ └── TLChatPhotoEmpty.cs ├── contact │ ├── TLContact.cs │ ├── TLContactBlocked.cs │ ├── TLContactStatus.cs │ ├── TLImportedContact.cs │ └── link │ │ ├── TLAbsContactLink.cs │ │ ├── TLContactLinkContact.cs │ │ ├── TLContactLinkHasPhone.cs │ │ ├── TLContactLinkNone.cs │ │ └── TLContactLinkUnknown.cs ├── contacts │ ├── TLAbsContacts.cs │ ├── TLContacts.cs │ ├── TLContactsFound.cs │ ├── TLContactsLink.cs │ ├── TLContactsNotModified.cs │ ├── TLImportedContacts.cs │ ├── TLResolvedPeer.cs │ ├── blocked │ │ ├── TLAbsBlocked.cs │ │ ├── TLBlocked.cs │ │ └── TLBlockedSlice.cs │ └── toppeers │ │ ├── TLAbsContactsTopPeers.cs │ │ ├── TLContactsTopPeers.cs │ │ └── TLContactsTopPeersNotModified.cs ├── decryptedmessage │ ├── TLAbsDecryptedMessage.cs │ ├── TLAbsDecryptedMessageMedia.cs │ ├── TLDecryptedMessage.cs │ ├── TLDecryptedMessageAction.cs │ ├── TLDecryptedMessageActionAbortKey.cs │ ├── TLDecryptedMessageActionAcceptKey.cs │ ├── TLDecryptedMessageActionCommitKey.cs │ ├── TLDecryptedMessageActionFlushHistory.cs │ ├── TLDecryptedMessageActionNoop.cs │ ├── TLDecryptedMessageActionNotifyLayer.cs │ ├── TLDecryptedMessageActionReadMessages.cs │ ├── TLDecryptedMessageActionRequestKey.cs │ ├── TLDecryptedMessageActionResend.cs │ ├── TLDecryptedMessageActionSetMessageTTL.cs │ ├── TLDecryptedMessageActionTyping.cs │ ├── TLDecryptedMessageLayer.cs │ ├── TLDecryptedMessageMediaAudio.cs │ ├── TLDecryptedMessageMediaContact.cs │ ├── TLDecryptedMessageMediaDocument.cs │ ├── TLDecryptedMessageMediaEmpty.cs │ ├── TLDecryptedMessageMediaExternalDocument.cs │ ├── TLDecryptedMessageMediaGeoPoint.cs │ ├── TLDecryptedMessageMediaPhoto.cs │ ├── TLDecryptedMessageMediaVideo.cs │ └── TLDecryptedMessageService.cs ├── dialog │ └── TLDialog.cs ├── disablefeature │ └── TLDisabledFeature.cs ├── document │ ├── TLAbsDocument.cs │ ├── TLDocument.cs │ ├── TLDocumentEmpty.cs │ └── attribute │ │ ├── TLAbsDocumentAttribute.cs │ │ ├── TLDocumentAttributeAnimated.cs │ │ ├── TLDocumentAttributeAudio.cs │ │ ├── TLDocumentAttributeFilename.cs │ │ ├── TLDocumentAttributeHasStickers.cs │ │ ├── TLDocumentAttributeImageSize.cs │ │ ├── TLDocumentAttributeSticker.cs │ │ └── TLDocumentAttributeVideo.cs ├── draft │ ├── TLAbsDraftMessage.cs │ ├── TLDraftMessage.cs │ └── TLDraftMessageEmpty.cs ├── encrypted │ ├── chat │ │ ├── TLAbsEncryptedChat.cs │ │ ├── TLEncryptedChat.cs │ │ ├── TLEncryptedChatDiscarded.cs │ │ ├── TLEncryptedChatEmpty.cs │ │ ├── TLEncryptedChatRequested.cs │ │ └── TLEncryptedChatWaiting.cs │ ├── file │ │ ├── TLAbsEncryptedFile.cs │ │ ├── TLEncryptedFile.cs │ │ └── TLEncryptedFileEmpty.cs │ └── message │ │ ├── TLAbsEncryptedMessage.cs │ │ ├── TLEncryptedMessage.cs │ │ └── TLEncryptedMessageService.cs ├── engine │ ├── ApiCallback.cs │ ├── AppInfo.cs │ ├── GzipRequest.cs │ ├── Logger.cs │ ├── LoggerInterface.cs │ ├── RpcCallback.cs │ ├── RpcCallbackEx.cs │ ├── RpcException.cs │ ├── TelegramApi.cs │ ├── TimeoutException.cs │ ├── file │ │ ├── DownloadListener.cs │ │ ├── Downloader.cs │ │ ├── UploadListener.cs │ │ └── Uploader.cs │ └── storage │ │ └── AbsApiState.cs ├── file │ └── location │ │ ├── TLAbsFileLocation.cs │ │ ├── TLFileLocation.cs │ │ └── TLFileLocationUnavailable.cs ├── foundgif │ ├── TLAbsFoundGif.cs │ ├── TLFoundGif.cs │ └── TLFoundGifCached.cs ├── functions │ ├── TLRequestBotsAnswerWebhookJSONQuery.cs │ ├── TLRequestInitConnection.cs │ ├── TLRequestInvokeAfterMsg.cs │ ├── TLRequestInvokeAfterMsgs.cs │ ├── TLRequestInvokeWithLayer.cs │ ├── TLRequestInvokeWithoutUpdates.cs │ ├── account │ │ ├── TLRequestAccountChangePhone.cs │ │ ├── TLRequestAccountCheckUsername.cs │ │ ├── TLRequestAccountConfirmPhone.cs │ │ ├── TLRequestAccountDeleteAccount.cs │ │ ├── TLRequestAccountGetAccountTTL.cs │ │ ├── TLRequestAccountGetAuthorizations.cs │ │ ├── TLRequestAccountGetNotifySettings.cs │ │ ├── TLRequestAccountGetPassword.cs │ │ ├── TLRequestAccountGetPasswordSettings.cs │ │ ├── TLRequestAccountGetPrivacy.cs │ │ ├── TLRequestAccountGetWallPapers.cs │ │ ├── TLRequestAccountRegisterDevice.cs │ │ ├── TLRequestAccountReportPeer.cs │ │ ├── TLRequestAccountResetAuthorization.cs │ │ ├── TLRequestAccountResetNotifySettings.cs │ │ ├── TLRequestAccountSendChangePhoneCode.cs │ │ ├── TLRequestAccountSendConfirmPhoneCode.cs │ │ ├── TLRequestAccountSetAccountTTL.cs │ │ ├── TLRequestAccountSetPrivacy.cs │ │ ├── TLRequestAccountUnregisterDevice.cs │ │ ├── TLRequestAccountUpdateDeviceLocked.cs │ │ ├── TLRequestAccountUpdateNotifySettings.cs │ │ ├── TLRequestAccountUpdatePasswordSettings.cs │ │ ├── TLRequestAccountUpdateProfile.cs │ │ ├── TLRequestAccountUpdateStatus.cs │ │ ├── TLRequestAccountUpdateUsername.cs │ │ └── TLRequestGetTmpPassword.cs │ ├── auth │ │ ├── TLRequestAuthBindTempAuthKey.cs │ │ ├── TLRequestAuthCancelCode.cs │ │ ├── TLRequestAuthCheckPassword.cs │ │ ├── TLRequestAuthCheckPhone.cs │ │ ├── TLRequestAuthDropTempAuthKeys.cs │ │ ├── TLRequestAuthExportAuthorization.cs │ │ ├── TLRequestAuthImportAuthorization.cs │ │ ├── TLRequestAuthImportBotAuthorization.cs │ │ ├── TLRequestAuthLogOut.cs │ │ ├── TLRequestAuthRecoverPassword.cs │ │ ├── TLRequestAuthRequestPasswordRecovery.cs │ │ ├── TLRequestAuthResendCode.cs │ │ ├── TLRequestAuthResetAuthorizations.cs │ │ ├── TLRequestAuthSendCode.cs │ │ ├── TLRequestAuthSendInvites.cs │ │ ├── TLRequestAuthSignIn.cs │ │ └── TLRequestAuthSignUp.cs │ ├── bots │ │ └── TLRequestBotsSendCustomRequest.cs │ ├── channels │ │ ├── TLRequestChannelsCheckUsername.cs │ │ ├── TLRequestChannelsCreateChannel.cs │ │ ├── TLRequestChannelsDeleteChannel.cs │ │ ├── TLRequestChannelsDeleteMessages.cs │ │ ├── TLRequestChannelsDeleteUserHistory.cs │ │ ├── TLRequestChannelsEditAbout.cs │ │ ├── TLRequestChannelsEditAdmin.cs │ │ ├── TLRequestChannelsEditPhoto.cs │ │ ├── TLRequestChannelsEditTitle.cs │ │ ├── TLRequestChannelsExportInvite.cs │ │ ├── TLRequestChannelsExportMessageLink.cs │ │ ├── TLRequestChannelsGetAdminedPublicChannels.cs │ │ ├── TLRequestChannelsGetChannels.cs │ │ ├── TLRequestChannelsGetFullChannel.cs │ │ ├── TLRequestChannelsGetMessages.cs │ │ ├── TLRequestChannelsGetParticipant.cs │ │ ├── TLRequestChannelsGetParticipants.cs │ │ ├── TLRequestChannelsInviteToChannel.cs │ │ ├── TLRequestChannelsJoinChannel.cs │ │ ├── TLRequestChannelsKickFromChannel.cs │ │ ├── TLRequestChannelsLeaveChannel.cs │ │ ├── TLRequestChannelsReadHistory.cs │ │ ├── TLRequestChannelsReportSpam.cs │ │ ├── TLRequestChannelsToggleInvites.cs │ │ ├── TLRequestChannelsToggleSignatures.cs │ │ ├── TLRequestChannelsUpdatePinnedMessage.cs │ │ └── TLRequestChannelsUpdateUsername.cs │ ├── contacts │ │ ├── TLRequestContactsBlock.cs │ │ ├── TLRequestContactsDeleteContact.cs │ │ ├── TLRequestContactsDeleteContacts.cs │ │ ├── TLRequestContactsExportCard.cs │ │ ├── TLRequestContactsGetBlocked.cs │ │ ├── TLRequestContactsGetContacts.cs │ │ ├── TLRequestContactsGetStatuses.cs │ │ ├── TLRequestContactsGetTopPeers.cs │ │ ├── TLRequestContactsImportCard.cs │ │ ├── TLRequestContactsImportContacts.cs │ │ ├── TLRequestContactsResetTopPeerRating.cs │ │ ├── TLRequestContactsResolveUsername.cs │ │ ├── TLRequestContactsSearch.cs │ │ └── TLRequestContactsUnblock.cs │ ├── help │ │ ├── TLRequestHelpGetAppChangelog.cs │ │ ├── TLRequestHelpGetAppUpdate.cs │ │ ├── TLRequestHelpGetCdnConfig.cs │ │ ├── TLRequestHelpGetConfig.cs │ │ ├── TLRequestHelpGetInviteText.cs │ │ ├── TLRequestHelpGetNearestDc.cs │ │ ├── TLRequestHelpGetSupport.cs │ │ ├── TLRequestHelpGetTermsOfService.cs │ │ ├── TLRequestHelpSaveAppLog.cs │ │ └── TLRequestHelpSetBotUpdatesStatus.cs │ ├── messages │ │ ├── TLRequestMessagesAcceptEncryption.cs │ │ ├── TLRequestMessagesAddChatUser.cs │ │ ├── TLRequestMessagesCheckChatInvite.cs │ │ ├── TLRequestMessagesClearRecentStickers.cs │ │ ├── TLRequestMessagesCreateChat.cs │ │ ├── TLRequestMessagesDeleteChatUser.cs │ │ ├── TLRequestMessagesDeleteHistory.cs │ │ ├── TLRequestMessagesDeleteMessages.cs │ │ ├── TLRequestMessagesDiscardEncryption.cs │ │ ├── TLRequestMessagesEditChatAdmin.cs │ │ ├── TLRequestMessagesEditChatPhoto.cs │ │ ├── TLRequestMessagesEditChatTitle.cs │ │ ├── TLRequestMessagesEditInlineBotMessage.cs │ │ ├── TLRequestMessagesEditMessage.cs │ │ ├── TLRequestMessagesExportChatInvite.cs │ │ ├── TLRequestMessagesForwardMessage.cs │ │ ├── TLRequestMessagesForwardMessages.cs │ │ ├── TLRequestMessagesGetAllChats.cs │ │ ├── TLRequestMessagesGetAllDrafts.cs │ │ ├── TLRequestMessagesGetAllStickers.cs │ │ ├── TLRequestMessagesGetArchivedStickers.cs │ │ ├── TLRequestMessagesGetAttachedStickers.cs │ │ ├── TLRequestMessagesGetBotCallbackAnswer.cs │ │ ├── TLRequestMessagesGetChats.cs │ │ ├── TLRequestMessagesGetCommonChats.cs │ │ ├── TLRequestMessagesGetDhConfig.cs │ │ ├── TLRequestMessagesGetDialogs.cs │ │ ├── TLRequestMessagesGetDocumentByHash.cs │ │ ├── TLRequestMessagesGetFeaturedStickers.cs │ │ ├── TLRequestMessagesGetFullChat.cs │ │ ├── TLRequestMessagesGetGameHighScores.cs │ │ ├── TLRequestMessagesGetHistory.cs │ │ ├── TLRequestMessagesGetInlineBotResults.cs │ │ ├── TLRequestMessagesGetInlineGameHighScores.cs │ │ ├── TLRequestMessagesGetMaskStickers.cs │ │ ├── TLRequestMessagesGetMessageEditData.cs │ │ ├── TLRequestMessagesGetMessages.cs │ │ ├── TLRequestMessagesGetMessagesViews.cs │ │ ├── TLRequestMessagesGetPeerDialogs.cs │ │ ├── TLRequestMessagesGetPeerSettings.cs │ │ ├── TLRequestMessagesGetPinnedDialogs.cs │ │ ├── TLRequestMessagesGetRecentStickers.cs │ │ ├── TLRequestMessagesGetSavedGifs.cs │ │ ├── TLRequestMessagesGetStickersSet.cs │ │ ├── TLRequestMessagesGetWebPage.cs │ │ ├── TLRequestMessagesGetWebPagePreview.cs │ │ ├── TLRequestMessagesHideReportSpam.cs │ │ ├── TLRequestMessagesImportChatInvite.cs │ │ ├── TLRequestMessagesInstallStickersSet.cs │ │ ├── TLRequestMessagesMigrateChat.cs │ │ ├── TLRequestMessagesReadContents.cs │ │ ├── TLRequestMessagesReadEncryptedHistory.cs │ │ ├── TLRequestMessagesReadFeaturedStickers.cs │ │ ├── TLRequestMessagesReadHistory.cs │ │ ├── TLRequestMessagesReceivedMessages.cs │ │ ├── TLRequestMessagesReceivedQueue.cs │ │ ├── TLRequestMessagesReorderPinnedDialogs.cs │ │ ├── TLRequestMessagesReorderStickerSets.cs │ │ ├── TLRequestMessagesReportEncryptedSpam.cs │ │ ├── TLRequestMessagesReportSpam.cs │ │ ├── TLRequestMessagesRequestEncryption.cs │ │ ├── TLRequestMessagesSaveDraft.cs │ │ ├── TLRequestMessagesSaveGif.cs │ │ ├── TLRequestMessagesSaveRecentStickers.cs │ │ ├── TLRequestMessagesSearch.cs │ │ ├── TLRequestMessagesSearchGifs.cs │ │ ├── TLRequestMessagesSearchGlobal.cs │ │ ├── TLRequestMessagesSendEncrypted.cs │ │ ├── TLRequestMessagesSendEncryptedFile.cs │ │ ├── TLRequestMessagesSendEncryptedService.cs │ │ ├── TLRequestMessagesSendInlineBotResults.cs │ │ ├── TLRequestMessagesSendMedia.cs │ │ ├── TLRequestMessagesSendMessage.cs │ │ ├── TLRequestMessagesSetBotCallbackAnswer.cs │ │ ├── TLRequestMessagesSetBotPrecheckoutResults.cs │ │ ├── TLRequestMessagesSetBotShippingResults.cs │ │ ├── TLRequestMessagesSetEncryptedTyping.cs │ │ ├── TLRequestMessagesSetGameScore.cs │ │ ├── TLRequestMessagesSetInlineBotResults.cs │ │ ├── TLRequestMessagesSetInlineGameScore.cs │ │ ├── TLRequestMessagesSetTyping.cs │ │ ├── TLRequestMessagesStartBot.cs │ │ ├── TLRequestMessagesToggleChatAdmins.cs │ │ ├── TLRequestMessagesToggleDialogPin.cs │ │ └── TLRequestMessagesUninstallStickersSet.cs │ ├── payments │ │ ├── TLRequestPaymentsClearSavedInfo.cs │ │ ├── TLRequestPaymentsGetPaymentForm.cs │ │ ├── TLRequestPaymentsGetPaymentReceipt.cs │ │ ├── TLRequestPaymentsGetSavedInfo.cs │ │ ├── TLRequestPaymentsSendPaymentForm.cs │ │ └── TLRequestPaymentsValidateRequestedInfo.cs │ ├── phone │ │ ├── TLRequestPhoneAcceptCall.cs │ │ ├── TLRequestPhoneConfirmCall.cs │ │ ├── TLRequestPhoneDiscardCall.cs │ │ ├── TLRequestPhoneGetCallConfig.cs │ │ ├── TLRequestPhoneReceivedCall.cs │ │ ├── TLRequestPhoneRequestCall.cs │ │ ├── TLRequestPhoneSaveCallDebug.cs │ │ └── TLRequestPhoneSetCallRating.cs │ ├── photos │ │ ├── TLRequestPhotosDeletePhotos.cs │ │ ├── TLRequestPhotosGetUserPhotos.cs │ │ ├── TLRequestPhotosUpdateProfilePhoto.cs │ │ └── TLRequestPhotosUploadProfilePhoto.cs │ ├── updates │ │ ├── TLRequestUpdatesGetChannelDifference.cs │ │ ├── TLRequestUpdatesGetDifference.cs │ │ └── TLRequestUpdatesGetState.cs │ ├── upload │ │ ├── TLRequestReuploadCdnFile.cs │ │ ├── TLRequestUploadGetCdnFile.cs │ │ ├── TLRequestUploadGetFile.cs │ │ ├── TLRequestUploadGetWebFile.cs │ │ ├── TLRequestUploadSaveBigFilePart.cs │ │ └── TLRequestUploadSaveFilePart.cs │ └── users │ │ ├── TLRequestUsersGetFullUser.cs │ │ └── TLRequestUsersGetUsers.cs ├── game │ └── TLGame.cs ├── geo │ └── point │ │ ├── TLAbsGeoPoint.cs │ │ ├── TLGeoPoint.cs │ │ └── TLGeoPointEmpty.cs ├── help │ ├── TLAbsAppUpdate.cs │ ├── TLAppUpdate.cs │ ├── TLInviteText.cs │ ├── TLNoAppUpdate.cs │ ├── TLSupport.cs │ └── TLTermsOfService.cs ├── input │ ├── TLInputAppEvent.cs │ ├── TLInputPhoneContact.cs │ ├── bot │ │ ├── TLInputBotInlineMessageId.cs │ │ ├── inlinemessage │ │ │ ├── TLAbsInputBotInlineMessage.cs │ │ │ ├── TLInputBotInlineMessageGame.cs │ │ │ ├── TLInputBotInlineMessageMediaAuto.cs │ │ │ ├── TLInputBotInlineMessageMediaContact.cs │ │ │ ├── TLInputBotInlineMessageMediaGeo.cs │ │ │ ├── TLInputBotInlineMessageMediaVenue.cs │ │ │ └── TLInputBotInlineMessageText.cs │ │ └── inlineresult │ │ │ ├── TLAbsInputBotInlineResult.cs │ │ │ ├── TLInputBotInlineResult.cs │ │ │ ├── TLInputBotInlineResultDocument.cs │ │ │ ├── TLInputBotInlineResultGame.cs │ │ │ └── TLInputBotInlineResultPhoto.cs │ ├── chat │ │ ├── TLAbsInputChannel.cs │ │ ├── TLInputChannel.cs │ │ ├── TLInputChannelEmpty.cs │ │ └── photo │ │ │ ├── TLAbsInputChatPhoto.cs │ │ │ ├── TLInputChatPhoto.cs │ │ │ ├── TLInputChatPhotoEmpty.cs │ │ │ └── TLInputChatUploadedPhoto.cs │ ├── document │ │ ├── TLAbsInputDocument.cs │ │ ├── TLInputDocument.cs │ │ └── TLInputDocumentEmpty.cs │ ├── encrypted │ │ ├── TLInputEncryptedChat.cs │ │ └── file │ │ │ ├── TLAbsInputEncryptedFile.cs │ │ │ ├── TLInputEncryptedFile.cs │ │ │ ├── TLInputEncryptedFileBigUploaded.cs │ │ │ ├── TLInputEncryptedFileEmpty.cs │ │ │ ├── TLInputEncryptedFileUploaded.cs │ │ │ └── location │ │ │ └── TLInputEncryptedFileLocation.cs │ ├── file │ │ ├── TLAbsInputFile.cs │ │ ├── TLInputFile.cs │ │ └── TLInputFileBig.cs │ ├── filelocation │ │ ├── TLAbsInputFileLocation.cs │ │ ├── TLInputDocumentFileLocation.cs │ │ └── TLInputFileLocation.cs │ ├── game │ │ ├── TLAbsInputGame.cs │ │ ├── TLInputGameId.cs │ │ └── TLInputGameShortName.cs │ ├── geopoint │ │ ├── TLAbsInputGeoPoint.cs │ │ ├── TLInputGeoPoint.cs │ │ └── TLInputGeoPointEmpty.cs │ ├── media │ │ ├── TLAbsInputMedia.cs │ │ ├── TLInputMediaContact.cs │ │ ├── TLInputMediaDocument.cs │ │ ├── TLInputMediaDocumentExternal.cs │ │ ├── TLInputMediaEmpty.cs │ │ ├── TLInputMediaGame.cs │ │ ├── TLInputMediaGeoPoint.cs │ │ ├── TLInputMediaGifExternal.cs │ │ ├── TLInputMediaInvoice.cs │ │ ├── TLInputMediaPhoto.cs │ │ ├── TLInputMediaPhotoExternal.cs │ │ ├── TLInputMediaUploadedDocument.cs │ │ ├── TLInputMediaUploadedPhoto.cs │ │ ├── TLInputMediaUploadedThumbDocument.cs │ │ └── TLInputMediaVenue.cs │ ├── messages │ │ ├── entity │ │ │ ├── TLAbsInputMessageEntity.cs │ │ │ └── TLInputMessageEntityMentionName.cs │ │ └── filter │ │ │ ├── TLAbsMessagesFilter.cs │ │ │ ├── TLMessagesFilterChatPhoto.cs │ │ │ ├── TLMessagesFilterDocument.cs │ │ │ ├── TLMessagesFilterEmpty.cs │ │ │ ├── TLMessagesFilterGif.cs │ │ │ ├── TLMessagesFilterMusic.cs │ │ │ ├── TLMessagesFilterPhoneCalls.cs │ │ │ ├── TLMessagesFilterPhotoVideo.cs │ │ │ ├── TLMessagesFilterPhotoVideoDocuments.cs │ │ │ ├── TLMessagesFilterPhotos.cs │ │ │ ├── TLMessagesFilterRoundVideo.cs │ │ │ ├── TLMessagesFilterRoundVoice.cs │ │ │ ├── TLMessagesFilterUrl.cs │ │ │ ├── TLMessagesFilterVideo.cs │ │ │ └── TLMessagesFilterVoice.cs │ ├── notify │ │ ├── TLAbsInputNotifyPeer.cs │ │ ├── TLInputNotifyAll.cs │ │ ├── TLInputNotifyChats.cs │ │ ├── TLInputNotifyPeer.cs │ │ └── TLInputNotifyUsers.cs │ ├── paymentapi │ │ ├── TLInputWebDocument.cs │ │ ├── TLInputWebFileLocation.cs │ │ └── paymentcredentials │ │ │ ├── TLAbsInputPaymentCredentials.cs │ │ │ ├── TLInputPaymentCredentials.cs │ │ │ └── TLInputPaymentCredentialsSaved.cs │ ├── peer │ │ ├── TLAbsInputPeer.cs │ │ ├── TLInputPeerChannel.cs │ │ ├── TLInputPeerChat.cs │ │ ├── TLInputPeerEmpty.cs │ │ ├── TLInputPeerSelf.cs │ │ ├── TLInputPeerUser.cs │ │ └── notify │ │ │ ├── TLInputPeerNotifySettings.cs │ │ │ └── events │ │ │ ├── TLAbsInputPeerNotifyEvents.cs │ │ │ ├── TLInputPeerNotifyEventsAll.cs │ │ │ └── TLInputPeerNotifyEventsEmpty.cs │ ├── phonecall │ │ └── TLInputPhoneCall.cs │ ├── photo │ │ ├── TLAbsInputPhoto.cs │ │ ├── TLInputPhoto.cs │ │ └── TLInputPhotoEmpty.cs │ ├── privacy │ │ ├── inputprivacykey │ │ │ ├── TLAbsInputPrivacyKey.cs │ │ │ ├── TLInputPrivacyKeyChatInvite.cs │ │ │ ├── TLInputPrivacyKeyPhoneCall.cs │ │ │ └── TLInputPrivacyKeyStatusTimestamp.cs │ │ └── inputprivacyrule │ │ │ ├── TLAbsInputPrivacyRule.cs │ │ │ ├── TLInputPrivacyValueAllowAll.cs │ │ │ ├── TLInputPrivacyValueAllowContacts.cs │ │ │ ├── TLInputPrivacyValueAllowUsers.cs │ │ │ ├── TLInputPrivacyValueDisallowAll.cs │ │ │ ├── TLInputPrivacyValueDisallowContacts.cs │ │ │ └── TLInputPrivacyValueDisallowUsers.cs │ ├── reportspamreason │ │ ├── TLAbsReportSpamReason.cs │ │ ├── TLReportSpamReasonOther.cs │ │ ├── TLReportSpamReasonPornography.cs │ │ ├── TLReportSpamReasonSpam.cs │ │ └── TLReportSpamReasonViolence.cs │ ├── sticker │ │ ├── media │ │ │ ├── TLAbsInputStickeredMedia.cs │ │ │ ├── TLInputStickeredMediaDocument.cs │ │ │ └── TLInputStickeredMediaPhoto.cs │ │ └── set │ │ │ ├── TLAbsInputStickerSet.cs │ │ │ ├── TLInputStickerSetEmpty.cs │ │ │ ├── TLInputStickerSetId.cs │ │ │ └── TLInputStickerSetShortName.cs │ └── user │ │ ├── TLAbsInputUser.cs │ │ ├── TLInputUser.cs │ │ ├── TLInputUserEmpty.cs │ │ └── TLInputUserSelf.cs ├── keyboard │ ├── TLKeyboardButtonRow.cs │ ├── button │ │ ├── TLAbsKeyboardButton.cs │ │ ├── TLKeyboardButton.cs │ │ ├── TLKeyboardButtonBuy.cs │ │ ├── TLKeyboardButtonCallback.cs │ │ ├── TLKeyboardButtonGame.cs │ │ ├── TLKeyboardButtonRequestGeoLocation.cs │ │ ├── TLKeyboardButtonRequestPhone.cs │ │ ├── TLKeyboardButtonRequestSwitchInline.cs │ │ └── TLKeyboardButtonUrl.cs │ └── replymarkup │ │ ├── TLAbsReplyMarkup.cs │ │ ├── TLReplayInlineKeyboardMarkup.cs │ │ ├── TLReplayKeyboardForceReply.cs │ │ ├── TLReplayKeyboardHide.cs │ │ └── TLReplayKeyboardMarkup.cs ├── message │ ├── TLAbsMessage.cs │ ├── TLExportedMessageLink.cs │ ├── TLMessage.cs │ ├── TLMessageEmpty.cs │ ├── TLMessageFwdHeader.cs │ ├── TLMessageRange.cs │ ├── TLMessageService.cs │ ├── action │ │ ├── TLAbsMessageAction.cs │ │ ├── TLMessageActionChannelCreate.cs │ │ ├── TLMessageActionChannelMigratedFrom.cs │ │ ├── TLMessageActionChatAddUser.cs │ │ ├── TLMessageActionChatCreate.cs │ │ ├── TLMessageActionChatDeletePhoto.cs │ │ ├── TLMessageActionChatDeleteUser.cs │ │ ├── TLMessageActionChatEditPhoto.cs │ │ ├── TLMessageActionChatEditTitle.cs │ │ ├── TLMessageActionChatJoinedByLink.cs │ │ ├── TLMessageActionEmpty.cs │ │ ├── TLMessageActionGameScore.cs │ │ ├── TLMessageActionHistoryClear.cs │ │ ├── TLMessageActionMigrateTo.cs │ │ ├── TLMessageActionPaymentSent.cs │ │ ├── TLMessageActionPaymentSentMe.cs │ │ ├── TLMessageActionPhoneCall.cs │ │ └── TLMessageActionPinMessage.cs │ ├── entity │ │ ├── TLAbsMessageEntity.cs │ │ ├── TLMessageEntityBold.cs │ │ ├── TLMessageEntityBotCommand.cs │ │ ├── TLMessageEntityCode.cs │ │ ├── TLMessageEntityEmail.cs │ │ ├── TLMessageEntityHashtag.cs │ │ ├── TLMessageEntityItalic.cs │ │ ├── TLMessageEntityMention.cs │ │ ├── TLMessageEntityMentionName.cs │ │ ├── TLMessageEntityPre.cs │ │ ├── TLMessageEntityTextUrl.cs │ │ ├── TLMessageEntityUnknown.cs │ │ └── TLMessageEntityUrl.cs │ └── media │ │ ├── TLAbsMessageMedia.cs │ │ ├── TLMessageMediaContact.cs │ │ ├── TLMessageMediaDocument.cs │ │ ├── TLMessageMediaEmpty.cs │ │ ├── TLMessageMediaGame.cs │ │ ├── TLMessageMediaGeo.cs │ │ ├── TLMessageMediaInvoice.cs │ │ ├── TLMessageMediaPhoto.cs │ │ ├── TLMessageMediaUnsupported.cs │ │ ├── TLMessageMediaVenue.cs │ │ └── TLMessageMediaWebPage.cs ├── messages │ ├── TLAbsMessages.cs │ ├── TLAffectedHistory.cs │ ├── TLAffectedMessages.cs │ ├── TLBotResults.cs │ ├── TLChannelMessages.cs │ ├── TLFoundGifs.cs │ ├── TLMessages.cs │ ├── TLMessagesArchivedStickers.cs │ ├── TLMessagesBotCallbackAnswer.cs │ ├── TLMessagesChatFull.cs │ ├── TLMessagesEditData.cs │ ├── TLMessagesHighScores.cs │ ├── TLMessagesPeerDialogs.cs │ ├── TLMessagesSlice.cs │ ├── chats │ │ ├── TLAbsMessagesChats.cs │ │ ├── TLMessagesChats.cs │ │ └── TLMessagesChatsSlice.cs │ ├── dhconfig │ │ ├── TLAbsDhConfig.cs │ │ ├── TLDhConfig.cs │ │ └── TLDhConfigNotModified.cs │ ├── dialogs │ │ ├── TLAbsDialogs.cs │ │ ├── TLDialogs.cs │ │ └── TLDialogsSlice.cs │ ├── savedgifs │ │ ├── TLAbsSavedGifs.cs │ │ ├── TLSavedGifs.cs │ │ └── TLSavedGifsNotModified.cs │ ├── sentencrypted │ │ ├── TLAbsSentEncryptedMessage.cs │ │ ├── TLSentEncryptedFile.cs │ │ └── TLSentEncryptedMessage.cs │ └── stickers │ │ ├── TLAbsAllStickers.cs │ │ ├── TLAbsStickers.cs │ │ ├── TLAllStickers.cs │ │ ├── TLAllStickersNotModified.cs │ │ ├── TLMessagesStickerSet.cs │ │ ├── TLStickers.cs │ │ ├── TLStickersNotModified.cs │ │ ├── featured │ │ ├── TLAbsMessagesFeaturedStickers.cs │ │ ├── TLMessagesFeaturedStickers.cs │ │ └── TLMessagesFeaturedStickersNotModified.cs │ │ ├── recent │ │ ├── TLAbsMessagesRecentStickers.cs │ │ ├── TLMessagesRecentStickers.cs │ │ └── TLMessagesRecentStickersNotModified.cs │ │ └── setintallresult │ │ ├── TLAbsMessagesStickerSetInstallResult.cs │ │ ├── TLMessagesStickerSetInstallResultArchive.cs │ │ └── TLMessagesStickerSetInstallResultSuccess.cs ├── notify │ └── peer │ │ ├── TLAbsNotifyPeer.cs │ │ ├── TLNotifyAll.cs │ │ ├── TLNotifyChats.cs │ │ ├── TLNotifyPeer.cs │ │ └── TLNotifyUsers.cs ├── page │ ├── TLAbsPage.cs │ ├── TLPageFull.cs │ ├── TLPagePart.cs │ └── block │ │ ├── TLAbsPageBlock.cs │ │ ├── TLPageBlockAnchor.cs │ │ ├── TLPageBlockAuthorDate.cs │ │ ├── TLPageBlockBlockquote.cs │ │ ├── TLPageBlockChannel.cs │ │ ├── TLPageBlockCollage.cs │ │ ├── TLPageBlockCover.cs │ │ ├── TLPageBlockDivider.cs │ │ ├── TLPageBlockEmbed.cs │ │ ├── TLPageBlockEmbedPost.cs │ │ ├── TLPageBlockFooter.cs │ │ ├── TLPageBlockHeader.cs │ │ ├── TLPageBlockList.cs │ │ ├── TLPageBlockParagraph.cs │ │ ├── TLPageBlockPhoto.cs │ │ ├── TLPageBlockPreformatted.cs │ │ ├── TLPageBlockPullquote.cs │ │ ├── TLPageBlockSlideshow.cs │ │ ├── TLPageBlockSubheader.cs │ │ ├── TLPageBlockSubtitle.cs │ │ ├── TLPageBlockTitle.cs │ │ ├── TLPageBlockUnsupported.cs │ │ └── TLPageBlockVideo.cs ├── paymentapi │ ├── TLInvoice.cs │ ├── TLLabeledPrice.cs │ ├── TLPaymentCharge.cs │ ├── TLPaymentRequestedInfo.cs │ ├── TLPostAddress.cs │ ├── TLShippingOption.cs │ ├── TLWebDocument.cs │ ├── payments │ │ ├── TLPaymentsPaymentForm.cs │ │ ├── TLPaymentsPaymentReceipt.cs │ │ ├── TLPaymentsSavedInfo.cs │ │ ├── TLPaymentsValidatedRequestedInfo.cs │ │ └── result │ │ │ ├── TLAbsPaymentsPaymentResult.cs │ │ │ ├── TLPaymentsPaymentResult.cs │ │ │ └── TLPaymentsPaymentVerificationNeeded.cs │ └── savedcredentails │ │ ├── TLAbsPaymentSavedCredentials.cs │ │ └── TLPaymentSavedCredentialsCard.cs ├── peer │ ├── TLAbsPeer.cs │ ├── TLPeerChannel.cs │ ├── TLPeerChat.cs │ ├── TLPeerSettings.cs │ ├── TLPeerUser.cs │ └── notify │ │ ├── events │ │ ├── TLAbsPeerNotifyEvents.cs │ │ ├── TLPeerNotifyEventsAll.cs │ │ └── TLPeerNotifyEventsEmpty.cs │ │ └── settings │ │ ├── TLAbsPeerNotifySettings.cs │ │ ├── TLPeerNotifySettings.cs │ │ └── TLPeerNotifySettingsEmpty.cs ├── phone │ ├── TLPhoneCallProtocol.cs │ ├── TLPhoneConnection.cs │ ├── TLPhonePhoneCall.cs │ └── call │ │ ├── TLAbsPhoneCall.cs │ │ ├── TLPhoneCall.cs │ │ ├── TLPhoneCallAccepted.cs │ │ ├── TLPhoneCallDiscarded.cs │ │ ├── TLPhoneCallEmpty.cs │ │ ├── TLPhoneCallRequested.cs │ │ ├── TLPhoneCallWaiting.cs │ │ └── discardreason │ │ ├── TLAbsPhoneCallDiscardReason.cs │ │ ├── TLPhoneCallDiscardReasonBusy.cs │ │ ├── TLPhoneCallDiscardReasonDisconnect.cs │ │ ├── TLPhoneCallDiscardReasonHangup.cs │ │ └── TLPhoneCallDiscardReasonMissed.cs ├── photo │ ├── TLAbsPhoto.cs │ ├── TLPhoto.cs │ ├── TLPhotoEmpty.cs │ └── size │ │ ├── TLAbsPhotoSize.cs │ │ ├── TLPhotoCachedSize.cs │ │ ├── TLPhotoSize.cs │ │ └── TLPhotoSizeEmpty.cs ├── photos │ ├── TLAbsPhotos.cs │ ├── TLPhotos.cs │ ├── TLPhotosPhoto.cs │ └── TLPhotosSlice.cs ├── privacy │ ├── privacykey │ │ ├── TLAbsPrivacyKey.cs │ │ ├── TLPrivacyKeyChatInvite.cs │ │ ├── TLPrivacyKeyPhoneCall.cs │ │ └── TLPrivacyKeyStatusTimestamp.cs │ └── privacyrule │ │ ├── TLAbsPrivacyRule.cs │ │ ├── TLPrivacyValueAllowAll.cs │ │ ├── TLPrivacyValueAllowContacts.cs │ │ ├── TLPrivacyValueAllowUsers.cs │ │ ├── TLPrivacyValueDisallowAll.cs │ │ ├── TLPrivacyValueDisallowContacts.cs │ │ └── TLPrivacyValueDisallowUsers.cs ├── richtext │ ├── TLAbsRichText.cs │ ├── TLTextBold.cs │ ├── TLTextConcat.cs │ ├── TLTextEmail.cs │ ├── TLTextEmpty.cs │ ├── TLTextFixed.cs │ ├── TLTextItalic.cs │ ├── TLTextPlain.cs │ ├── TLTextStrike.cs │ ├── TLTextUnderline.cs │ └── TLTextUrl.cs ├── sendmessage │ └── action │ │ ├── TLAbsSendMessageAction.cs │ │ ├── TLSendMessageCancelAction.cs │ │ ├── TLSendMessageChooseContactAction.cs │ │ ├── TLSendMessageGamePlayAction.cs │ │ ├── TLSendMessageGeoLocationAction.cs │ │ ├── TLSendMessageRecordAudioAction.cs │ │ ├── TLSendMessageRecordRoundAction.cs │ │ ├── TLSendMessageRecordVideoAction.cs │ │ ├── TLSendMessageTypingAction.cs │ │ ├── TLSendMessageUploadAudioAction.cs │ │ ├── TLSendMessageUploadDocumentAction.cs │ │ ├── TLSendMessageUploadPhotoAction.cs │ │ ├── TLSendMessageUploadRoundAction.cs │ │ └── TLSendMessageUploadVideoAction.cs ├── sticker │ ├── TLMaskCoords.cs │ ├── pack │ │ └── TLStickerPack.cs │ ├── set │ │ └── TLStickerSet.cs │ └── stickersetconvered │ │ ├── TLAbsStickerSetCovered.cs │ │ ├── TLStickerSetCovered.cs │ │ └── TLStickerSetMultiCovered.cs ├── storage │ └── file │ │ ├── TLAbsFileType.cs │ │ ├── TLFileGif.cs │ │ ├── TLFileJpeg.cs │ │ ├── TLFileMov.cs │ │ ├── TLFileMp3.cs │ │ ├── TLFileMp4.cs │ │ ├── TLFilePartial.cs │ │ ├── TLFilePdf.cs │ │ ├── TLFilePng.cs │ │ ├── TLFileUnknown.cs │ │ └── TLFileWebp.cs ├── toppeer │ ├── TLTopPeer.cs │ ├── TLTopPeerCategoryPeers.cs │ └── category │ │ ├── TLAbsTopPeerCategory.cs │ │ ├── TLTopPeerCategoryBotsInline.cs │ │ ├── TLTopPeerCategoryBotsPM.cs │ │ ├── TLTopPeerCategoryChannels.cs │ │ ├── TLTopPeerCategoryCorrespondents.cs │ │ └── TLTopPeerCategoryGroups.cs ├── update │ ├── TLAbsUpdate.cs │ ├── TLChannelUpdate.cs │ ├── TLFakeUpdate.cs │ ├── TLUpdateBotCallbackQuery.cs │ ├── TLUpdateBotInlineQuery.cs │ ├── TLUpdateBotInlineSend.cs │ ├── TLUpdateBotPrecheckoutQuery.cs │ ├── TLUpdateBotShippingQuery.cs │ ├── TLUpdateBotWebhookJSON.cs │ ├── TLUpdateBotWebhookJSONQuery.cs │ ├── TLUpdateChannel.cs │ ├── TLUpdateChannelMessageViews.cs │ ├── TLUpdateChannelNewMessage.cs │ ├── TLUpdateChannelPinnedMessage.cs │ ├── TLUpdateChannelTooLong.cs │ ├── TLUpdateChannelWebPage.cs │ ├── TLUpdateChatAdmin.cs │ ├── TLUpdateChatParticipantAdd.cs │ ├── TLUpdateChatParticipantAdmin.cs │ ├── TLUpdateChatParticipantDelete.cs │ ├── TLUpdateChatParticipants.cs │ ├── TLUpdateChatUserTyping.cs │ ├── TLUpdateConfig.cs │ ├── TLUpdateContactLink.cs │ ├── TLUpdateContactRegistered.cs │ ├── TLUpdateDcOptions.cs │ ├── TLUpdateDeleteChannelMessages.cs │ ├── TLUpdateDeleteMessages.cs │ ├── TLUpdateDialogPinned.cs │ ├── TLUpdateDraftMessage.cs │ ├── TLUpdateEditChannelMessage.cs │ ├── TLUpdateEditMessage.cs │ ├── TLUpdateInlineBotCallbackQuery.cs │ ├── TLUpdateMessageId.cs │ ├── TLUpdateNewMessage.cs │ ├── TLUpdateNewStickerSet.cs │ ├── TLUpdateNotifySettings.cs │ ├── TLUpdatePhoneCall.cs │ ├── TLUpdatePinnedDialogs.cs │ ├── TLUpdatePrivacy.cs │ ├── TLUpdatePtsChanged.cs │ ├── TLUpdateReadChannelInbox.cs │ ├── TLUpdateReadChannelOutbox.cs │ ├── TLUpdateReadFeaturedStickers.cs │ ├── TLUpdateReadMessagesContents.cs │ ├── TLUpdateReadMessagesInbox.cs │ ├── TLUpdateReadMessagesOutbox.cs │ ├── TLUpdateRecentStickers.cs │ ├── TLUpdateSavedGifs.cs │ ├── TLUpdateServiceNotification.cs │ ├── TLUpdateStickerSets.cs │ ├── TLUpdateStickerSetsOrder.cs │ ├── TLUpdateUserBlocked.cs │ ├── TLUpdateUserName.cs │ ├── TLUpdateUserPhone.cs │ ├── TLUpdateUserPhoto.cs │ ├── TLUpdateUserStatus.cs │ ├── TLUpdateUserTyping.cs │ ├── TLUpdateWebPage.cs │ └── encrypted │ │ ├── TLUpdateEncryptedChatTyping.cs │ │ ├── TLUpdateEncryptedMessagesRead.cs │ │ ├── TLUpdateEncryption.cs │ │ └── TLUpdateNewEncryptedMessage.cs ├── updates │ ├── TLAbsUpdates.cs │ ├── TLUpdateShort.cs │ ├── TLUpdateShortChatMessage.cs │ ├── TLUpdateShortMessage.cs │ ├── TLUpdateShortSentMessage.cs │ ├── TLUpdates.cs │ ├── TLUpdatesCombined.cs │ ├── TLUpdatesState.cs │ ├── TLUpdatesTooLong.cs │ ├── channel │ │ └── differences │ │ │ ├── TLAbsUpdatesChannelDifferences.cs │ │ │ ├── TLUpdatesChannelDifferences.cs │ │ │ ├── TLUpdatesChannelDifferencesEmpty.cs │ │ │ └── TLUpdatesChannelDifferencesTooLong.cs │ └── difference │ │ ├── TLAbsDifference.cs │ │ ├── TLDifference.cs │ │ ├── TLDifferenceEmpty.cs │ │ ├── TLDifferenceSlice.cs │ │ └── TLDifferenceTooLong.cs ├── upload │ ├── TLWebFile.cs │ ├── cdn │ │ ├── TLAbsCdnFile.cs │ │ ├── TLCdnFile.cs │ │ └── TLCdnFileReuploadNeeded.cs │ └── file │ │ ├── TLAbsFile.cs │ │ ├── TLFile.cs │ │ └── TLFileCdnRedirect.cs ├── user │ ├── TLAbsUser.cs │ ├── TLUser.cs │ ├── TLUserEmpty.cs │ ├── TLUserFull.cs │ ├── profile │ │ └── photo │ │ │ ├── TLAbsUserProfilePhoto.cs │ │ │ ├── TLUserProfilePhoto.cs │ │ │ └── TLUserProfilePhotoEmpty.cs │ └── status │ │ ├── TLAbsUserStatus.cs │ │ ├── TLUserStatusEmpty.cs │ │ ├── TLUserStatusLastMonth.cs │ │ ├── TLUserStatusLastWeek.cs │ │ ├── TLUserStatusOffline.cs │ │ ├── TLUserStatusOnline.cs │ │ └── TLUserStatusRecently.cs ├── wallpaper │ ├── TLAbsWallPaper.cs │ ├── TLWallPaper.cs │ └── TLWallPaperSolid.cs └── webpage │ ├── TLAbsWebPage.cs │ ├── TLWebPage.cs │ ├── TLWebPageEmpty.cs │ ├── TLWebPageNotModified.cs │ └── TLWebPagePending.cs ├── mtproto ├── CallWrapper.cs ├── MTProto.cs ├── MTProtoCallback.cs ├── ServerException.cs ├── TransportSecurityException.cs ├── backoff │ ├── ApiErrorExponentialBackoff.cs │ └── ExponentalBackoff.cs ├── pq │ ├── Authorizer.cs │ └── PqAuth.cs ├── schedule │ ├── PrepareSchedule.cs │ ├── PreparedPackage.cs │ └── Scheduller.cs ├── secure │ ├── CryptoUtils.cs │ ├── Entropy.cs │ ├── KeyParameter.cs │ ├── Keys.cs │ ├── aes │ │ ├── AESFastEngine.cs │ │ ├── AESImplementation.cs │ │ └── DefaultAESImplementation.cs │ └── pq │ │ ├── PQImplementation.cs │ │ ├── PQLopatin.cs │ │ └── PQSolver.cs ├── state │ ├── AbsMTProtoState.cs │ ├── ConnectionInfo.cs │ ├── KnownSalt.cs │ └── MemoryProtoState.cs ├── time │ └── TimeOverlord.cs ├── tl │ ├── MTBadMessage.cs │ ├── MTBadMessageNotification.cs │ ├── MTBadServerSalt.cs │ ├── MTDestroySession.cs │ ├── MTDestroySessionNone.cs │ ├── MTDestroySessionOk.cs │ ├── MTFutureSalt.cs │ ├── MTFutureSalts.cs │ ├── MTGetFutureSalts.cs │ ├── MTHttpWait.cs │ ├── MTInvokeAfter.cs │ ├── MTMessage.cs │ ├── MTMessageCopy.cs │ ├── MTMessageDetailedInfo.cs │ ├── MTMessagesAllInfo.cs │ ├── MTMessagesContainer.cs │ ├── MTMessagesStateInfo.cs │ ├── MTMsgsAck.cs │ ├── MTMsgsStateReq.cs │ ├── MTNeedResendMessage.cs │ ├── MTNewMessageDetailedInfo.cs │ ├── MTNewSessionCreated.cs │ ├── MTPing.cs │ ├── MTPingDelayDisconnect.cs │ ├── MTPong.cs │ ├── MTProtoContext.cs │ ├── MTRpcAnswerDropped.cs │ ├── MTRpcAnswerDroppedRunning.cs │ ├── MTRpcAnswerUnknown.cs │ ├── MTRpcDropAnswer.cs │ ├── MTRpcError.cs │ ├── MTRpcResult.cs │ └── pq │ │ ├── ClientDhInner.cs │ │ ├── DhGenFailure.cs │ │ ├── DhGenOk.cs │ │ ├── DhGenResult.cs │ │ ├── DhGenRetry.cs │ │ ├── MTRpcReqError.cs │ │ ├── PQInner.cs │ │ ├── ReqDhParams.cs │ │ ├── ReqPQ.cs │ │ ├── ReqSetDhClientParams.cs │ │ ├── ResPQ.cs │ │ ├── ServerDhFailure.cs │ │ ├── ServerDhInner.cs │ │ ├── ServerDhOk.cs │ │ ├── ServerDhParams.cs │ │ └── TLInitContext.cs ├── transport │ ├── BuffersStorage.cs │ ├── ByteBufferDesc.cs │ ├── BytesHelper.cs │ ├── ConnectionState.cs │ ├── ConnectionType.cs │ ├── PlainTcpConnection.cs │ ├── TcpContext.cs │ ├── TcpContextCallback.cs │ └── TransportRate.cs └── util │ ├── BytesCache.cs │ └── TimeUtil.cs └── tl ├── DeserializeException.cs ├── StreamingUtils.cs ├── TLBool.cs ├── TLBoolFalse.cs ├── TLBoolTrue.cs ├── TLBytes.cs ├── TLContext.cs ├── TLError.cs ├── TLGzipObject.cs ├── TLIntVector.cs ├── TLLongVector.cs ├── TLMethod.cs ├── TLNull.cs ├── TLObject.cs ├── TLStringVector.cs ├── TLTrue.cs ├── TLVector.cs └── util ├── ArrayUtils.cs ├── ContainerHelpers.cs └── SparseArray.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/README.md -------------------------------------------------------------------------------- /example/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/AssemblyInfo.cs -------------------------------------------------------------------------------- /example/Global.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /example/HoopoeTelegram.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram.csproj -------------------------------------------------------------------------------- /example/HoopoeTelegram.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram.csproj.user -------------------------------------------------------------------------------- /example/HoopoeTelegram.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram.sln -------------------------------------------------------------------------------- /example/HoopoeTelegram/Class_Date.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/Class_Date.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/Class_Files_And_Folders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/Class_Files_And_Folders.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/Class_Window_Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/Class_Window_Control.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/FormUpload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/FormUpload.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/GlobalCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/GlobalCrypto.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/HardWare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/HardWare.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/Main.Designer.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/Main.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/Main.resx -------------------------------------------------------------------------------- /example/HoopoeTelegram/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/Program.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/Properties/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/Properties/Resources.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/Properties/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/Properties/Settings.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/Queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/Queue.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/appState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/appState.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/frmDeliveryReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/frmDeliveryReport.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/frmDeliveryReport.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/frmDeliveryReport.resx -------------------------------------------------------------------------------- /example/HoopoeTelegram/frmMsgReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/frmMsgReceiver.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/frmMsgReceiver.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/frmMsgReceiver.resx -------------------------------------------------------------------------------- /example/HoopoeTelegram/frmNewAcc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/frmNewAcc.cs -------------------------------------------------------------------------------- /example/HoopoeTelegram/frmNewAcc.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/HoopoeTelegram/frmNewAcc.resx -------------------------------------------------------------------------------- /example/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /example/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/Properties/Resources.resx -------------------------------------------------------------------------------- /example/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/Properties/app.manifest -------------------------------------------------------------------------------- /example/Resources/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/Resources/ajax-loader.gif -------------------------------------------------------------------------------- /example/Resources/aminated-talking-people@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/Resources/aminated-talking-people@2x.gif -------------------------------------------------------------------------------- /example/Resources/loading (1).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/Resources/loading (1).gif -------------------------------------------------------------------------------- /example/Resources/rocket.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/Resources/rocket.gif -------------------------------------------------------------------------------- /example/Resources/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/Resources/search.gif -------------------------------------------------------------------------------- /example/Resources/start-button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/Resources/start-button.gif -------------------------------------------------------------------------------- /example/Resources/xfiles.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/Resources/xfiles.ttf -------------------------------------------------------------------------------- /example/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/app.config -------------------------------------------------------------------------------- /example/hoopoe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/example/hoopoe.ico -------------------------------------------------------------------------------- /library/compile/_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/_api.dll -------------------------------------------------------------------------------- /library/compile/_api57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/_api57.dll -------------------------------------------------------------------------------- /library/compile/_api57_with_actor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/_api57_with_actor.dll -------------------------------------------------------------------------------- /library/compile/_api66.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/_api66.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.AWT.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.AWT.WinForms.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Beans.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Beans.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Charsets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Charsets.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Cldrdata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Cldrdata.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Corba.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Corba.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Core.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Jdbc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Jdbc.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Localedata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Localedata.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Management.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Media.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Media.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Misc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Misc.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Naming.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Naming.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Nashorn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Nashorn.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Remoting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Remoting.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Security.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.SwingAWT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.SwingAWT.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Text.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Tools.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.Util.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.XML.API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.XML.API.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.XML.Bind.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.XML.Bind.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.XML.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.XML.Crypto.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.XML.Parse.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.XML.Parse.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.XML.Transform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.XML.Transform.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.XML.WebServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.XML.WebServices.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.OpenJDK.XML.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.OpenJDK.XML.XPath.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.Reflection.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.Runtime.JNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.Runtime.JNI.dll -------------------------------------------------------------------------------- /library/compile/dependency/IKVM.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/compile/dependency/IKVM.Runtime.dll -------------------------------------------------------------------------------- /library/source/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/AssemblyInfo.cs -------------------------------------------------------------------------------- /library/source/Global.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /library/source/_api66.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/_api66.csproj -------------------------------------------------------------------------------- /library/source/_api66.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/_api66.jar -------------------------------------------------------------------------------- /library/source/engine/MemoryApiState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/engine/MemoryApiState.cs -------------------------------------------------------------------------------- /library/source/ikvm.exports: -------------------------------------------------------------------------------- 1 | WIKVM.OpenJDK.Core, Version=8.1.5717.0, Culture=neutral, PublicKeyToken=13235d27fcbfff58 -------------------------------------------------------------------------------- /library/source/ir/telegramp/IUpdatesHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/ir/telegramp/IUpdatesHandler.cs -------------------------------------------------------------------------------- /library/source/ir/telegramp/JarPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/ir/telegramp/JarPath.cs -------------------------------------------------------------------------------- /library/source/ir/telegramp/MimeTypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/ir/telegramp/MimeTypeMap.cs -------------------------------------------------------------------------------- /library/source/ir/telegramp/MyLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/ir/telegramp/MyLogger.cs -------------------------------------------------------------------------------- /library/source/ir/telegramp/PhoneModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/ir/telegramp/PhoneModels.cs -------------------------------------------------------------------------------- /library/source/ir/telegramp/Roozh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/ir/telegramp/Roozh.cs -------------------------------------------------------------------------------- /library/source/ir/telegramp/UpdateWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/ir/telegramp/UpdateWrapper.cs -------------------------------------------------------------------------------- /library/source/ir/telegramp/UpdatesHandlerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/ir/telegramp/UpdatesHandlerBase.cs -------------------------------------------------------------------------------- /library/source/ir/telegramp/WarAndPeace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/ir/telegramp/WarAndPeace.cs -------------------------------------------------------------------------------- /library/source/ir/telegramp/telegramApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/ir/telegramp/telegramApi.cs -------------------------------------------------------------------------------- /library/source/jawnae/pyronet/ByteStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/jawnae/pyronet/ByteStream.cs -------------------------------------------------------------------------------- /library/source/jawnae/pyronet/PyroClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/jawnae/pyronet/PyroClient.cs -------------------------------------------------------------------------------- /library/source/jawnae/pyronet/PyroClientAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/jawnae/pyronet/PyroClientAdapter.cs -------------------------------------------------------------------------------- /library/source/jawnae/pyronet/PyroClientListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/jawnae/pyronet/PyroClientListener.cs -------------------------------------------------------------------------------- /library/source/jawnae/pyronet/PyroException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/jawnae/pyronet/PyroException.cs -------------------------------------------------------------------------------- /library/source/jawnae/pyronet/PyroSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/jawnae/pyronet/PyroSelector.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/TLApiContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/TLApiContext.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/TLAuthorization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/TLAuthorization.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/TLConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/TLConfig.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/TLDataJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/TLDataJSON.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/TLDcOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/TLDcOption.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/TLHighScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/TLHighScore.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/TLNearestDc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/TLNearestDc.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/TLReceivedNotifyMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/TLReceivedNotifyMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/account/TLAbsAccountPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/account/TLAbsAccountPassword.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/account/TLAccountAuthorizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/account/TLAccountAuthorizations.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/account/TLAccountDaysTTL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/account/TLAccountDaysTTL.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/account/TLAccountNoPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/account/TLAccountNoPassword.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/account/TLAccountPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/account/TLAccountPassword.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/account/TLAccountPasswordInputSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/account/TLAccountPasswordInputSettings.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/account/TLAccountPasswordSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/account/TLAccountPasswordSettings.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/account/TLAccountPrivacyRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/account/TLAccountPrivacyRules.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/account/TLAccountTmpPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/account/TLAccountTmpPassword.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/auth/TLAuthorization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/auth/TLAuthorization.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/auth/TLCheckedPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/auth/TLCheckedPhone.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/auth/TLExportedAuthorization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/auth/TLExportedAuthorization.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/auth/TLPasswordRecovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/auth/TLPasswordRecovery.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/auth/TLSentCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/auth/TLSentCode.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/auth/codetype/TLAbsCodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/auth/codetype/TLAbsCodeType.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/auth/codetype/TLCodeTypeCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/auth/codetype/TLCodeTypeCall.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/auth/codetype/TLCodeTypeFlashCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/auth/codetype/TLCodeTypeFlashCall.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/auth/codetype/TLCodeTypeSms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/auth/codetype/TLCodeTypeSms.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/auth/sentcodetype/TLAbsSentCodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/auth/sentcodetype/TLAbsSentCodeType.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/auth/sentcodetype/TLSentCodeTypeApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/auth/sentcodetype/TLSentCodeTypeApp.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/auth/sentcodetype/TLSentCodeTypeCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/auth/sentcodetype/TLSentCodeTypeCall.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/auth/sentcodetype/TLSentCodeTypeFlashCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/auth/sentcodetype/TLSentCodeTypeFlashCall.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/auth/sentcodetype/TLSentCodeTypeSms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/auth/sentcodetype/TLSentCodeTypeSms.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/bot/TLBotCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/bot/TLBotCommand.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/bot/TLBotInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/bot/TLBotInfo.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/bot/TLInlineBotSwitchPm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/bot/TLInlineBotSwitchPm.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/bot/inlinemessage/TLAbsBotInlineMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/bot/inlinemessage/TLAbsBotInlineMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/bot/inlinemessage/TLBotInlineMessageMediaGeo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/bot/inlinemessage/TLBotInlineMessageMediaGeo.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/bot/inlinemessage/TLBotInlineMessageText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/bot/inlinemessage/TLBotInlineMessageText.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/bot/inlineresult/TLAbsBotInlineResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/bot/inlineresult/TLAbsBotInlineResult.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/bot/inlineresult/TLBotInlineMediaResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/bot/inlineresult/TLBotInlineMediaResult.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/bot/inlineresult/TLBotInlineResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/bot/inlineresult/TLBotInlineResult.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/cdn/TLCdnConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/cdn/TLCdnConfig.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/cdn/TLCdnPublicKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/cdn/TLCdnPublicKey.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/channel/TLChannelParticipant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/channel/TLChannelParticipant.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/channel/TLChannelParticipants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/channel/TLChannelParticipants.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/channel/filters/TLAbsChannelMessagesFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/channel/filters/TLAbsChannelMessagesFilter.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/channel/filters/TLChannelMessagesFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/channel/filters/TLChannelMessagesFilter.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/channel/filters/TLChannelMessagesFilterEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/channel/filters/TLChannelMessagesFilterEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/channel/participants/TLAbsChannelParticipant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/channel/participants/TLAbsChannelParticipant.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/channel/participants/TLChannelParticipant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/channel/participants/TLChannelParticipant.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/TLAbsChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/TLAbsChat.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/TLAbsChatFull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/TLAbsChatFull.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/TLChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/TLChat.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/TLChatEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/TLChatEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/TLChatForbidden.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/TLChatForbidden.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/TLChatFull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/TLChatFull.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/channel/TLChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/channel/TLChannel.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/channel/TLChannelForbidden.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/channel/TLChannelForbidden.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/channel/TLChannelFull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/channel/TLChannelFull.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/invite/TLAbsChatInvite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/invite/TLAbsChatInvite.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/invite/TLChatInvite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/invite/TLChatInvite.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/invite/TLChatInviteAlready.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/invite/TLChatInviteAlready.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/invite/TLChatInviteEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/invite/TLChatInviteEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/invite/TLChatInviteExported.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/invite/TLChatInviteExported.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/photo/TLAbsChatPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/photo/TLAbsChatPhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/photo/TLChatPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/photo/TLChatPhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/chat/photo/TLChatPhotoEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/chat/photo/TLChatPhotoEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contact/TLContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contact/TLContact.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contact/TLContactBlocked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contact/TLContactBlocked.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contact/TLContactStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contact/TLContactStatus.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contact/TLImportedContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contact/TLImportedContact.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contact/link/TLAbsContactLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contact/link/TLAbsContactLink.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contact/link/TLContactLinkContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contact/link/TLContactLinkContact.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contact/link/TLContactLinkHasPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contact/link/TLContactLinkHasPhone.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contact/link/TLContactLinkNone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contact/link/TLContactLinkNone.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contact/link/TLContactLinkUnknown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contact/link/TLContactLinkUnknown.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contacts/TLAbsContacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contacts/TLAbsContacts.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contacts/TLContacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contacts/TLContacts.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contacts/TLContactsFound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contacts/TLContactsFound.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contacts/TLContactsLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contacts/TLContactsLink.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contacts/TLContactsNotModified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contacts/TLContactsNotModified.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contacts/TLImportedContacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contacts/TLImportedContacts.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contacts/TLResolvedPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contacts/TLResolvedPeer.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contacts/blocked/TLAbsBlocked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contacts/blocked/TLAbsBlocked.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contacts/blocked/TLBlocked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contacts/blocked/TLBlocked.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contacts/blocked/TLBlockedSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contacts/blocked/TLBlockedSlice.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contacts/toppeers/TLAbsContactsTopPeers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contacts/toppeers/TLAbsContactsTopPeers.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/contacts/toppeers/TLContactsTopPeers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/contacts/toppeers/TLContactsTopPeers.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/decryptedmessage/TLAbsDecryptedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/decryptedmessage/TLAbsDecryptedMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/decryptedmessage/TLAbsDecryptedMessageMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/decryptedmessage/TLAbsDecryptedMessageMedia.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/decryptedmessage/TLDecryptedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/decryptedmessage/TLDecryptedMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/decryptedmessage/TLDecryptedMessageAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/decryptedmessage/TLDecryptedMessageAction.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/decryptedmessage/TLDecryptedMessageLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/decryptedmessage/TLDecryptedMessageLayer.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/decryptedmessage/TLDecryptedMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/decryptedmessage/TLDecryptedMessageService.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/dialog/TLDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/dialog/TLDialog.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/disablefeature/TLDisabledFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/disablefeature/TLDisabledFeature.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/document/TLAbsDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/document/TLAbsDocument.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/document/TLDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/document/TLDocument.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/document/TLDocumentEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/document/TLDocumentEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/document/attribute/TLAbsDocumentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/document/attribute/TLAbsDocumentAttribute.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/draft/TLAbsDraftMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/draft/TLAbsDraftMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/draft/TLDraftMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/draft/TLDraftMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/draft/TLDraftMessageEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/draft/TLDraftMessageEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/encrypted/chat/TLAbsEncryptedChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/encrypted/chat/TLAbsEncryptedChat.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/encrypted/chat/TLEncryptedChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/encrypted/chat/TLEncryptedChat.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/encrypted/chat/TLEncryptedChatDiscarded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/encrypted/chat/TLEncryptedChatDiscarded.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/encrypted/chat/TLEncryptedChatEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/encrypted/chat/TLEncryptedChatEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/encrypted/chat/TLEncryptedChatRequested.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/encrypted/chat/TLEncryptedChatRequested.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/encrypted/chat/TLEncryptedChatWaiting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/encrypted/chat/TLEncryptedChatWaiting.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/encrypted/file/TLAbsEncryptedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/encrypted/file/TLAbsEncryptedFile.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/encrypted/file/TLEncryptedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/encrypted/file/TLEncryptedFile.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/encrypted/file/TLEncryptedFileEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/encrypted/file/TLEncryptedFileEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/encrypted/message/TLAbsEncryptedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/encrypted/message/TLAbsEncryptedMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/encrypted/message/TLEncryptedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/encrypted/message/TLEncryptedMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/engine/ApiCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/engine/ApiCallback.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/engine/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/engine/AppInfo.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/engine/GzipRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/engine/GzipRequest.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/engine/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/engine/Logger.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/engine/LoggerInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/engine/LoggerInterface.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/engine/RpcCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/engine/RpcCallback.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/engine/RpcCallbackEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/engine/RpcCallbackEx.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/engine/RpcException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/engine/RpcException.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/engine/TelegramApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/engine/TelegramApi.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/engine/TimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/engine/TimeoutException.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/engine/file/DownloadListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/engine/file/DownloadListener.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/engine/file/Downloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/engine/file/Downloader.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/engine/file/UploadListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/engine/file/UploadListener.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/engine/file/Uploader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/engine/file/Uploader.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/engine/storage/AbsApiState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/engine/storage/AbsApiState.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/file/location/TLAbsFileLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/file/location/TLAbsFileLocation.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/file/location/TLFileLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/file/location/TLFileLocation.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/file/location/TLFileLocationUnavailable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/file/location/TLFileLocationUnavailable.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/foundgif/TLAbsFoundGif.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/foundgif/TLAbsFoundGif.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/foundgif/TLFoundGif.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/foundgif/TLFoundGif.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/foundgif/TLFoundGifCached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/foundgif/TLFoundGifCached.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/TLRequestInitConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/TLRequestInitConnection.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/TLRequestInvokeAfterMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/TLRequestInvokeAfterMsg.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/TLRequestInvokeAfterMsgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/TLRequestInvokeAfterMsgs.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/TLRequestInvokeWithLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/TLRequestInvokeWithLayer.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/TLRequestInvokeWithoutUpdates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/TLRequestInvokeWithoutUpdates.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/account/TLRequestGetTmpPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/account/TLRequestGetTmpPassword.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/auth/TLRequestAuthCancelCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/auth/TLRequestAuthCancelCode.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/auth/TLRequestAuthCheckPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/auth/TLRequestAuthCheckPassword.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/auth/TLRequestAuthCheckPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/auth/TLRequestAuthCheckPhone.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/auth/TLRequestAuthLogOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/auth/TLRequestAuthLogOut.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/auth/TLRequestAuthResendCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/auth/TLRequestAuthResendCode.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/auth/TLRequestAuthSendCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/auth/TLRequestAuthSendCode.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/auth/TLRequestAuthSendInvites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/auth/TLRequestAuthSendInvites.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/auth/TLRequestAuthSignIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/auth/TLRequestAuthSignIn.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/auth/TLRequestAuthSignUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/auth/TLRequestAuthSignUp.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/contacts/TLRequestContactsBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/contacts/TLRequestContactsBlock.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/help/TLRequestHelpGetAppUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/help/TLRequestHelpGetAppUpdate.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/help/TLRequestHelpGetCdnConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/help/TLRequestHelpGetCdnConfig.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/help/TLRequestHelpGetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/help/TLRequestHelpGetConfig.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/help/TLRequestHelpGetInviteText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/help/TLRequestHelpGetInviteText.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/help/TLRequestHelpGetNearestDc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/help/TLRequestHelpGetNearestDc.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/help/TLRequestHelpGetSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/help/TLRequestHelpGetSupport.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/help/TLRequestHelpSaveAppLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/help/TLRequestHelpSaveAppLog.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/phone/TLRequestPhoneAcceptCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/phone/TLRequestPhoneAcceptCall.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/phone/TLRequestPhoneConfirmCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/phone/TLRequestPhoneConfirmCall.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/phone/TLRequestPhoneDiscardCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/phone/TLRequestPhoneDiscardCall.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/phone/TLRequestPhoneRequestCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/phone/TLRequestPhoneRequestCall.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/upload/TLRequestReuploadCdnFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/upload/TLRequestReuploadCdnFile.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/upload/TLRequestUploadGetFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/upload/TLRequestUploadGetFile.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/users/TLRequestUsersGetFullUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/users/TLRequestUsersGetFullUser.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/functions/users/TLRequestUsersGetUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/functions/users/TLRequestUsersGetUsers.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/game/TLGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/game/TLGame.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/geo/point/TLAbsGeoPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/geo/point/TLAbsGeoPoint.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/geo/point/TLGeoPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/geo/point/TLGeoPoint.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/geo/point/TLGeoPointEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/geo/point/TLGeoPointEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/help/TLAbsAppUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/help/TLAbsAppUpdate.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/help/TLAppUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/help/TLAppUpdate.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/help/TLInviteText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/help/TLInviteText.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/help/TLNoAppUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/help/TLNoAppUpdate.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/help/TLSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/help/TLSupport.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/help/TLTermsOfService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/help/TLTermsOfService.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/TLInputAppEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/TLInputAppEvent.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/TLInputPhoneContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/TLInputPhoneContact.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/bot/TLInputBotInlineMessageId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/bot/TLInputBotInlineMessageId.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/chat/TLAbsInputChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/chat/TLAbsInputChannel.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/chat/TLInputChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/chat/TLInputChannel.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/chat/TLInputChannelEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/chat/TLInputChannelEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/chat/photo/TLAbsInputChatPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/chat/photo/TLAbsInputChatPhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/chat/photo/TLInputChatPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/chat/photo/TLInputChatPhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/chat/photo/TLInputChatPhotoEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/chat/photo/TLInputChatPhotoEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/chat/photo/TLInputChatUploadedPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/chat/photo/TLInputChatUploadedPhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/document/TLAbsInputDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/document/TLAbsInputDocument.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/document/TLInputDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/document/TLInputDocument.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/document/TLInputDocumentEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/document/TLInputDocumentEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/encrypted/TLInputEncryptedChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/encrypted/TLInputEncryptedChat.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/encrypted/file/TLInputEncryptedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/encrypted/file/TLInputEncryptedFile.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/file/TLAbsInputFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/file/TLAbsInputFile.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/file/TLInputFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/file/TLInputFile.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/file/TLInputFileBig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/file/TLInputFileBig.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/filelocation/TLAbsInputFileLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/filelocation/TLAbsInputFileLocation.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/filelocation/TLInputFileLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/filelocation/TLInputFileLocation.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/game/TLAbsInputGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/game/TLAbsInputGame.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/game/TLInputGameId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/game/TLInputGameId.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/game/TLInputGameShortName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/game/TLInputGameShortName.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/geopoint/TLAbsInputGeoPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/geopoint/TLAbsInputGeoPoint.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/geopoint/TLInputGeoPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/geopoint/TLInputGeoPoint.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/geopoint/TLInputGeoPointEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/geopoint/TLInputGeoPointEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/media/TLAbsInputMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/media/TLAbsInputMedia.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/media/TLInputMediaContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/media/TLInputMediaContact.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/media/TLInputMediaDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/media/TLInputMediaDocument.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/media/TLInputMediaDocumentExternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/media/TLInputMediaDocumentExternal.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/media/TLInputMediaEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/media/TLInputMediaEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/media/TLInputMediaGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/media/TLInputMediaGame.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/media/TLInputMediaGeoPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/media/TLInputMediaGeoPoint.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/media/TLInputMediaGifExternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/media/TLInputMediaGifExternal.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/media/TLInputMediaInvoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/media/TLInputMediaInvoice.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/media/TLInputMediaPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/media/TLInputMediaPhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/media/TLInputMediaPhotoExternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/media/TLInputMediaPhotoExternal.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/media/TLInputMediaUploadedDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/media/TLInputMediaUploadedDocument.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/media/TLInputMediaUploadedPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/media/TLInputMediaUploadedPhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/media/TLInputMediaVenue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/media/TLInputMediaVenue.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/messages/filter/TLAbsMessagesFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/messages/filter/TLAbsMessagesFilter.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/messages/filter/TLMessagesFilterGif.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/messages/filter/TLMessagesFilterGif.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/messages/filter/TLMessagesFilterUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/messages/filter/TLMessagesFilterUrl.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/notify/TLAbsInputNotifyPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/notify/TLAbsInputNotifyPeer.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/notify/TLInputNotifyAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/notify/TLInputNotifyAll.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/notify/TLInputNotifyChats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/notify/TLInputNotifyChats.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/notify/TLInputNotifyPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/notify/TLInputNotifyPeer.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/notify/TLInputNotifyUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/notify/TLInputNotifyUsers.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/paymentapi/TLInputWebDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/paymentapi/TLInputWebDocument.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/paymentapi/TLInputWebFileLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/paymentapi/TLInputWebFileLocation.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/peer/TLAbsInputPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/peer/TLAbsInputPeer.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/peer/TLInputPeerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/peer/TLInputPeerChannel.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/peer/TLInputPeerChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/peer/TLInputPeerChat.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/peer/TLInputPeerEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/peer/TLInputPeerEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/peer/TLInputPeerSelf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/peer/TLInputPeerSelf.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/peer/TLInputPeerUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/peer/TLInputPeerUser.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/phonecall/TLInputPhoneCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/phonecall/TLInputPhoneCall.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/photo/TLAbsInputPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/photo/TLAbsInputPhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/photo/TLInputPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/photo/TLInputPhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/photo/TLInputPhotoEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/photo/TLInputPhotoEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/sticker/set/TLAbsInputStickerSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/sticker/set/TLAbsInputStickerSet.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/sticker/set/TLInputStickerSetEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/sticker/set/TLInputStickerSetEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/sticker/set/TLInputStickerSetId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/sticker/set/TLInputStickerSetId.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/user/TLAbsInputUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/user/TLAbsInputUser.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/user/TLInputUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/user/TLInputUser.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/user/TLInputUserEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/user/TLInputUserEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/input/user/TLInputUserSelf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/input/user/TLInputUserSelf.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/keyboard/TLKeyboardButtonRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/keyboard/TLKeyboardButtonRow.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/keyboard/button/TLAbsKeyboardButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/keyboard/button/TLAbsKeyboardButton.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/keyboard/button/TLKeyboardButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/keyboard/button/TLKeyboardButton.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/keyboard/button/TLKeyboardButtonBuy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/keyboard/button/TLKeyboardButtonBuy.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/keyboard/button/TLKeyboardButtonCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/keyboard/button/TLKeyboardButtonCallback.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/keyboard/button/TLKeyboardButtonGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/keyboard/button/TLKeyboardButtonGame.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/keyboard/button/TLKeyboardButtonUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/keyboard/button/TLKeyboardButtonUrl.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/keyboard/replymarkup/TLAbsReplyMarkup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/keyboard/replymarkup/TLAbsReplyMarkup.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/keyboard/replymarkup/TLReplayKeyboardHide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/keyboard/replymarkup/TLReplayKeyboardHide.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/TLAbsMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/TLAbsMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/TLExportedMessageLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/TLExportedMessageLink.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/TLMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/TLMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/TLMessageEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/TLMessageEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/TLMessageFwdHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/TLMessageFwdHeader.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/TLMessageRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/TLMessageRange.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/TLMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/TLMessageService.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/action/TLAbsMessageAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/action/TLAbsMessageAction.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/action/TLMessageActionChatAddUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/action/TLMessageActionChatAddUser.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/action/TLMessageActionChatCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/action/TLMessageActionChatCreate.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/action/TLMessageActionEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/action/TLMessageActionEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/action/TLMessageActionGameScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/action/TLMessageActionGameScore.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/action/TLMessageActionMigrateTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/action/TLMessageActionMigrateTo.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/action/TLMessageActionPaymentSent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/action/TLMessageActionPaymentSent.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/action/TLMessageActionPhoneCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/action/TLMessageActionPhoneCall.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/action/TLMessageActionPinMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/action/TLMessageActionPinMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/entity/TLAbsMessageEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/entity/TLAbsMessageEntity.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/entity/TLMessageEntityBold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/entity/TLMessageEntityBold.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/entity/TLMessageEntityBotCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/entity/TLMessageEntityBotCommand.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/entity/TLMessageEntityCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/entity/TLMessageEntityCode.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/entity/TLMessageEntityEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/entity/TLMessageEntityEmail.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/entity/TLMessageEntityHashtag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/entity/TLMessageEntityHashtag.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/entity/TLMessageEntityItalic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/entity/TLMessageEntityItalic.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/entity/TLMessageEntityMention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/entity/TLMessageEntityMention.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/entity/TLMessageEntityMentionName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/entity/TLMessageEntityMentionName.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/entity/TLMessageEntityPre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/entity/TLMessageEntityPre.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/entity/TLMessageEntityTextUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/entity/TLMessageEntityTextUrl.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/entity/TLMessageEntityUnknown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/entity/TLMessageEntityUnknown.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/entity/TLMessageEntityUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/entity/TLMessageEntityUrl.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/media/TLAbsMessageMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/media/TLAbsMessageMedia.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/media/TLMessageMediaContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/media/TLMessageMediaContact.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/media/TLMessageMediaDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/media/TLMessageMediaDocument.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/media/TLMessageMediaEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/media/TLMessageMediaEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/media/TLMessageMediaGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/media/TLMessageMediaGame.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/media/TLMessageMediaGeo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/media/TLMessageMediaGeo.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/media/TLMessageMediaInvoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/media/TLMessageMediaInvoice.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/media/TLMessageMediaPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/media/TLMessageMediaPhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/media/TLMessageMediaUnsupported.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/media/TLMessageMediaUnsupported.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/media/TLMessageMediaVenue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/media/TLMessageMediaVenue.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/message/media/TLMessageMediaWebPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/message/media/TLMessageMediaWebPage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/TLAbsMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/TLAbsMessages.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/TLAffectedHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/TLAffectedHistory.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/TLAffectedMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/TLAffectedMessages.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/TLBotResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/TLBotResults.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/TLChannelMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/TLChannelMessages.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/TLFoundGifs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/TLFoundGifs.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/TLMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/TLMessages.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/TLMessagesArchivedStickers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/TLMessagesArchivedStickers.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/TLMessagesBotCallbackAnswer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/TLMessagesBotCallbackAnswer.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/TLMessagesChatFull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/TLMessagesChatFull.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/TLMessagesEditData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/TLMessagesEditData.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/TLMessagesHighScores.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/TLMessagesHighScores.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/TLMessagesPeerDialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/TLMessagesPeerDialogs.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/TLMessagesSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/TLMessagesSlice.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/chats/TLAbsMessagesChats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/chats/TLAbsMessagesChats.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/chats/TLMessagesChats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/chats/TLMessagesChats.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/chats/TLMessagesChatsSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/chats/TLMessagesChatsSlice.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/dhconfig/TLAbsDhConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/dhconfig/TLAbsDhConfig.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/dhconfig/TLDhConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/dhconfig/TLDhConfig.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/dhconfig/TLDhConfigNotModified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/dhconfig/TLDhConfigNotModified.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/dialogs/TLAbsDialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/dialogs/TLAbsDialogs.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/dialogs/TLDialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/dialogs/TLDialogs.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/dialogs/TLDialogsSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/dialogs/TLDialogsSlice.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/savedgifs/TLAbsSavedGifs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/savedgifs/TLAbsSavedGifs.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/savedgifs/TLSavedGifs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/savedgifs/TLSavedGifs.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/savedgifs/TLSavedGifsNotModified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/savedgifs/TLSavedGifsNotModified.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/stickers/TLAbsAllStickers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/stickers/TLAbsAllStickers.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/stickers/TLAbsStickers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/stickers/TLAbsStickers.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/stickers/TLAllStickers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/stickers/TLAllStickers.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/stickers/TLMessagesStickerSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/stickers/TLMessagesStickerSet.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/stickers/TLStickers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/stickers/TLStickers.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/messages/stickers/TLStickersNotModified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/messages/stickers/TLStickersNotModified.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/notify/peer/TLAbsNotifyPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/notify/peer/TLAbsNotifyPeer.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/notify/peer/TLNotifyAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/notify/peer/TLNotifyAll.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/notify/peer/TLNotifyChats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/notify/peer/TLNotifyChats.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/notify/peer/TLNotifyPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/notify/peer/TLNotifyPeer.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/notify/peer/TLNotifyUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/notify/peer/TLNotifyUsers.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/TLAbsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/TLAbsPage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/TLPageFull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/TLPageFull.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/TLPagePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/TLPagePart.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLAbsPageBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLAbsPageBlock.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockAnchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockAnchor.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockAuthorDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockAuthorDate.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockBlockquote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockBlockquote.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockChannel.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockCollage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockCollage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockCover.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockDivider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockDivider.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockEmbed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockEmbed.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockEmbedPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockEmbedPost.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockFooter.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockHeader.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockList.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockParagraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockParagraph.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockPhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockPreformatted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockPreformatted.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockPullquote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockPullquote.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockSlideshow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockSlideshow.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockSubheader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockSubheader.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockSubtitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockSubtitle.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockTitle.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockUnsupported.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockUnsupported.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/page/block/TLPageBlockVideo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/page/block/TLPageBlockVideo.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/paymentapi/TLInvoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/paymentapi/TLInvoice.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/paymentapi/TLLabeledPrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/paymentapi/TLLabeledPrice.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/paymentapi/TLPaymentCharge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/paymentapi/TLPaymentCharge.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/paymentapi/TLPaymentRequestedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/paymentapi/TLPaymentRequestedInfo.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/paymentapi/TLPostAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/paymentapi/TLPostAddress.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/paymentapi/TLShippingOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/paymentapi/TLShippingOption.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/paymentapi/TLWebDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/paymentapi/TLWebDocument.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/paymentapi/payments/TLPaymentsPaymentForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/paymentapi/payments/TLPaymentsPaymentForm.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/paymentapi/payments/TLPaymentsSavedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/paymentapi/payments/TLPaymentsSavedInfo.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/peer/TLAbsPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/peer/TLAbsPeer.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/peer/TLPeerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/peer/TLPeerChannel.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/peer/TLPeerChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/peer/TLPeerChat.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/peer/TLPeerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/peer/TLPeerSettings.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/peer/TLPeerUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/peer/TLPeerUser.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/peer/notify/events/TLAbsPeerNotifyEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/peer/notify/events/TLAbsPeerNotifyEvents.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/peer/notify/events/TLPeerNotifyEventsAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/peer/notify/events/TLPeerNotifyEventsAll.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/peer/notify/settings/TLPeerNotifySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/peer/notify/settings/TLPeerNotifySettings.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/phone/TLPhoneCallProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/phone/TLPhoneCallProtocol.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/phone/TLPhoneConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/phone/TLPhoneConnection.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/phone/TLPhonePhoneCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/phone/TLPhonePhoneCall.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/phone/call/TLAbsPhoneCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/phone/call/TLAbsPhoneCall.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/phone/call/TLPhoneCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/phone/call/TLPhoneCall.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/phone/call/TLPhoneCallAccepted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/phone/call/TLPhoneCallAccepted.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/phone/call/TLPhoneCallDiscarded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/phone/call/TLPhoneCallDiscarded.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/phone/call/TLPhoneCallEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/phone/call/TLPhoneCallEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/phone/call/TLPhoneCallRequested.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/phone/call/TLPhoneCallRequested.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/phone/call/TLPhoneCallWaiting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/phone/call/TLPhoneCallWaiting.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/photo/TLAbsPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/photo/TLAbsPhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/photo/TLPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/photo/TLPhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/photo/TLPhotoEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/photo/TLPhotoEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/photo/size/TLAbsPhotoSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/photo/size/TLAbsPhotoSize.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/photo/size/TLPhotoCachedSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/photo/size/TLPhotoCachedSize.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/photo/size/TLPhotoSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/photo/size/TLPhotoSize.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/photo/size/TLPhotoSizeEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/photo/size/TLPhotoSizeEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/photos/TLAbsPhotos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/photos/TLAbsPhotos.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/photos/TLPhotos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/photos/TLPhotos.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/photos/TLPhotosPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/photos/TLPhotosPhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/photos/TLPhotosSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/photos/TLPhotosSlice.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/privacy/privacykey/TLAbsPrivacyKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/privacy/privacykey/TLAbsPrivacyKey.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/privacy/privacykey/TLPrivacyKeyChatInvite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/privacy/privacykey/TLPrivacyKeyChatInvite.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/privacy/privacykey/TLPrivacyKeyPhoneCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/privacy/privacykey/TLPrivacyKeyPhoneCall.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/privacy/privacyrule/TLAbsPrivacyRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/privacy/privacyrule/TLAbsPrivacyRule.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/richtext/TLAbsRichText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/richtext/TLAbsRichText.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/richtext/TLTextBold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/richtext/TLTextBold.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/richtext/TLTextConcat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/richtext/TLTextConcat.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/richtext/TLTextEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/richtext/TLTextEmail.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/richtext/TLTextEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/richtext/TLTextEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/richtext/TLTextFixed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/richtext/TLTextFixed.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/richtext/TLTextItalic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/richtext/TLTextItalic.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/richtext/TLTextPlain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/richtext/TLTextPlain.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/richtext/TLTextStrike.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/richtext/TLTextStrike.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/richtext/TLTextUnderline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/richtext/TLTextUnderline.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/richtext/TLTextUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/richtext/TLTextUrl.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/sendmessage/action/TLAbsSendMessageAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/sendmessage/action/TLAbsSendMessageAction.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/sticker/TLMaskCoords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/sticker/TLMaskCoords.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/sticker/pack/TLStickerPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/sticker/pack/TLStickerPack.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/sticker/set/TLStickerSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/sticker/set/TLStickerSet.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/storage/file/TLAbsFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/storage/file/TLAbsFileType.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/storage/file/TLFileGif.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/storage/file/TLFileGif.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/storage/file/TLFileJpeg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/storage/file/TLFileJpeg.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/storage/file/TLFileMov.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/storage/file/TLFileMov.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/storage/file/TLFileMp3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/storage/file/TLFileMp3.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/storage/file/TLFileMp4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/storage/file/TLFileMp4.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/storage/file/TLFilePartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/storage/file/TLFilePartial.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/storage/file/TLFilePdf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/storage/file/TLFilePdf.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/storage/file/TLFilePng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/storage/file/TLFilePng.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/storage/file/TLFileUnknown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/storage/file/TLFileUnknown.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/storage/file/TLFileWebp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/storage/file/TLFileWebp.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/toppeer/TLTopPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/toppeer/TLTopPeer.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/toppeer/TLTopPeerCategoryPeers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/toppeer/TLTopPeerCategoryPeers.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/toppeer/category/TLAbsTopPeerCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/toppeer/category/TLAbsTopPeerCategory.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/toppeer/category/TLTopPeerCategoryBotsPM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/toppeer/category/TLTopPeerCategoryBotsPM.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/toppeer/category/TLTopPeerCategoryGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/toppeer/category/TLTopPeerCategoryGroups.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLAbsUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLAbsUpdate.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLChannelUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLChannelUpdate.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLFakeUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLFakeUpdate.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateBotCallbackQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateBotCallbackQuery.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateBotInlineQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateBotInlineQuery.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateBotInlineSend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateBotInlineSend.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateBotPrecheckoutQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateBotPrecheckoutQuery.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateBotShippingQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateBotShippingQuery.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateBotWebhookJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateBotWebhookJSON.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateBotWebhookJSONQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateBotWebhookJSONQuery.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateChannel.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateChannelMessageViews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateChannelMessageViews.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateChannelNewMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateChannelNewMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateChannelPinnedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateChannelPinnedMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateChannelTooLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateChannelTooLong.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateChannelWebPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateChannelWebPage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateChatAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateChatAdmin.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateChatParticipantAdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateChatParticipantAdd.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateChatParticipantAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateChatParticipantAdmin.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateChatParticipantDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateChatParticipantDelete.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateChatParticipants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateChatParticipants.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateChatUserTyping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateChatUserTyping.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateConfig.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateContactLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateContactLink.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateContactRegistered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateContactRegistered.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateDcOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateDcOptions.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateDeleteChannelMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateDeleteChannelMessages.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateDeleteMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateDeleteMessages.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateDialogPinned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateDialogPinned.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateDraftMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateDraftMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateEditChannelMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateEditChannelMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateEditMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateEditMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateInlineBotCallbackQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateInlineBotCallbackQuery.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateMessageId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateMessageId.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateNewMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateNewMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateNewStickerSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateNewStickerSet.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateNotifySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateNotifySettings.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdatePhoneCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdatePhoneCall.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdatePinnedDialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdatePinnedDialogs.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdatePrivacy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdatePrivacy.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdatePtsChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdatePtsChanged.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateReadChannelInbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateReadChannelInbox.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateReadChannelOutbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateReadChannelOutbox.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateReadFeaturedStickers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateReadFeaturedStickers.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateReadMessagesContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateReadMessagesContents.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateReadMessagesInbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateReadMessagesInbox.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateReadMessagesOutbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateReadMessagesOutbox.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateRecentStickers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateRecentStickers.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateSavedGifs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateSavedGifs.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateServiceNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateServiceNotification.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateStickerSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateStickerSets.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateStickerSetsOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateStickerSetsOrder.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateUserBlocked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateUserBlocked.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateUserName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateUserName.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateUserPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateUserPhone.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateUserPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateUserPhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateUserStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateUserStatus.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateUserTyping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateUserTyping.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/TLUpdateWebPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/TLUpdateWebPage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/update/encrypted/TLUpdateEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/update/encrypted/TLUpdateEncryption.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/updates/TLAbsUpdates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/updates/TLAbsUpdates.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/updates/TLUpdateShort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/updates/TLUpdateShort.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/updates/TLUpdateShortChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/updates/TLUpdateShortChatMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/updates/TLUpdateShortMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/updates/TLUpdateShortMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/updates/TLUpdateShortSentMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/updates/TLUpdateShortSentMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/updates/TLUpdates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/updates/TLUpdates.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/updates/TLUpdatesCombined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/updates/TLUpdatesCombined.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/updates/TLUpdatesState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/updates/TLUpdatesState.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/updates/TLUpdatesTooLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/updates/TLUpdatesTooLong.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/updates/difference/TLAbsDifference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/updates/difference/TLAbsDifference.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/updates/difference/TLDifference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/updates/difference/TLDifference.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/updates/difference/TLDifferenceEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/updates/difference/TLDifferenceEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/updates/difference/TLDifferenceSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/updates/difference/TLDifferenceSlice.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/updates/difference/TLDifferenceTooLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/updates/difference/TLDifferenceTooLong.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/upload/TLWebFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/upload/TLWebFile.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/upload/cdn/TLAbsCdnFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/upload/cdn/TLAbsCdnFile.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/upload/cdn/TLCdnFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/upload/cdn/TLCdnFile.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/upload/cdn/TLCdnFileReuploadNeeded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/upload/cdn/TLCdnFileReuploadNeeded.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/upload/file/TLAbsFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/upload/file/TLAbsFile.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/upload/file/TLFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/upload/file/TLFile.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/upload/file/TLFileCdnRedirect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/upload/file/TLFileCdnRedirect.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/user/TLAbsUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/user/TLAbsUser.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/user/TLUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/user/TLUser.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/user/TLUserEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/user/TLUserEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/user/TLUserFull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/user/TLUserFull.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/user/profile/photo/TLAbsUserProfilePhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/user/profile/photo/TLAbsUserProfilePhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/user/profile/photo/TLUserProfilePhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/user/profile/photo/TLUserProfilePhoto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/user/status/TLAbsUserStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/user/status/TLAbsUserStatus.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/user/status/TLUserStatusEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/user/status/TLUserStatusEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/user/status/TLUserStatusLastMonth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/user/status/TLUserStatusLastMonth.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/user/status/TLUserStatusLastWeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/user/status/TLUserStatusLastWeek.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/user/status/TLUserStatusOffline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/user/status/TLUserStatusOffline.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/user/status/TLUserStatusOnline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/user/status/TLUserStatusOnline.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/user/status/TLUserStatusRecently.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/user/status/TLUserStatusRecently.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/wallpaper/TLAbsWallPaper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/wallpaper/TLAbsWallPaper.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/wallpaper/TLWallPaper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/wallpaper/TLWallPaper.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/wallpaper/TLWallPaperSolid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/wallpaper/TLWallPaperSolid.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/webpage/TLAbsWebPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/webpage/TLAbsWebPage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/webpage/TLWebPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/webpage/TLWebPage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/webpage/TLWebPageEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/webpage/TLWebPageEmpty.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/webpage/TLWebPageNotModified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/webpage/TLWebPageNotModified.cs -------------------------------------------------------------------------------- /library/source/org/telegram/api/webpage/TLWebPagePending.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/api/webpage/TLWebPagePending.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/CallWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/CallWrapper.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/MTProto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/MTProto.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/MTProtoCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/MTProtoCallback.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/ServerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/ServerException.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/TransportSecurityException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/TransportSecurityException.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/backoff/ApiErrorExponentialBackoff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/backoff/ApiErrorExponentialBackoff.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/backoff/ExponentalBackoff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/backoff/ExponentalBackoff.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/pq/Authorizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/pq/Authorizer.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/pq/PqAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/pq/PqAuth.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/schedule/PrepareSchedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/schedule/PrepareSchedule.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/schedule/PreparedPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/schedule/PreparedPackage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/schedule/Scheduller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/schedule/Scheduller.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/secure/CryptoUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/secure/CryptoUtils.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/secure/Entropy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/secure/Entropy.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/secure/KeyParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/secure/KeyParameter.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/secure/Keys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/secure/Keys.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/secure/aes/AESFastEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/secure/aes/AESFastEngine.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/secure/aes/AESImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/secure/aes/AESImplementation.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/secure/aes/DefaultAESImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/secure/aes/DefaultAESImplementation.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/secure/pq/PQImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/secure/pq/PQImplementation.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/secure/pq/PQLopatin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/secure/pq/PQLopatin.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/secure/pq/PQSolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/secure/pq/PQSolver.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/state/AbsMTProtoState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/state/AbsMTProtoState.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/state/ConnectionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/state/ConnectionInfo.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/state/KnownSalt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/state/KnownSalt.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/state/MemoryProtoState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/state/MemoryProtoState.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/time/TimeOverlord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/time/TimeOverlord.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTBadMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTBadMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTBadMessageNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTBadMessageNotification.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTBadServerSalt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTBadServerSalt.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTDestroySession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTDestroySession.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTDestroySessionNone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTDestroySessionNone.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTDestroySessionOk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTDestroySessionOk.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTFutureSalt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTFutureSalt.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTFutureSalts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTFutureSalts.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTGetFutureSalts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTGetFutureSalts.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTHttpWait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTHttpWait.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTInvokeAfter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTInvokeAfter.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTMessageCopy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTMessageCopy.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTMessageDetailedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTMessageDetailedInfo.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTMessagesAllInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTMessagesAllInfo.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTMessagesContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTMessagesContainer.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTMessagesStateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTMessagesStateInfo.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTMsgsAck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTMsgsAck.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTMsgsStateReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTMsgsStateReq.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTNeedResendMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTNeedResendMessage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTNewMessageDetailedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTNewMessageDetailedInfo.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTNewSessionCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTNewSessionCreated.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTPing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTPing.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTPingDelayDisconnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTPingDelayDisconnect.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTPong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTPong.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTProtoContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTProtoContext.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTRpcAnswerDropped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTRpcAnswerDropped.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTRpcAnswerDroppedRunning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTRpcAnswerDroppedRunning.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTRpcAnswerUnknown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTRpcAnswerUnknown.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTRpcDropAnswer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTRpcDropAnswer.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTRpcError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTRpcError.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/MTRpcResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/MTRpcResult.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/ClientDhInner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/ClientDhInner.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/DhGenFailure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/DhGenFailure.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/DhGenOk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/DhGenOk.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/DhGenResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/DhGenResult.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/DhGenRetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/DhGenRetry.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/MTRpcReqError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/MTRpcReqError.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/PQInner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/PQInner.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/ReqDhParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/ReqDhParams.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/ReqPQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/ReqPQ.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/ReqSetDhClientParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/ReqSetDhClientParams.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/ResPQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/ResPQ.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/ServerDhFailure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/ServerDhFailure.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/ServerDhInner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/ServerDhInner.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/ServerDhOk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/ServerDhOk.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/ServerDhParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/ServerDhParams.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/tl/pq/TLInitContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/tl/pq/TLInitContext.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/transport/BuffersStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/transport/BuffersStorage.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/transport/ByteBufferDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/transport/ByteBufferDesc.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/transport/BytesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/transport/BytesHelper.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/transport/ConnectionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/transport/ConnectionState.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/transport/ConnectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/transport/ConnectionType.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/transport/PlainTcpConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/transport/PlainTcpConnection.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/transport/TcpContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/transport/TcpContext.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/transport/TcpContextCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/transport/TcpContextCallback.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/transport/TransportRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/transport/TransportRate.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/util/BytesCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/util/BytesCache.cs -------------------------------------------------------------------------------- /library/source/org/telegram/mtproto/util/TimeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/mtproto/util/TimeUtil.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/DeserializeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/DeserializeException.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/StreamingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/StreamingUtils.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/TLBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/TLBool.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/TLBoolFalse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/TLBoolFalse.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/TLBoolTrue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/TLBoolTrue.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/TLBytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/TLBytes.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/TLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/TLContext.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/TLError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/TLError.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/TLGzipObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/TLGzipObject.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/TLIntVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/TLIntVector.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/TLLongVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/TLLongVector.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/TLMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/TLMethod.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/TLNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/TLNull.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/TLObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/TLObject.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/TLStringVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/TLStringVector.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/TLTrue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/TLTrue.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/TLVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/TLVector.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/util/ArrayUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/util/ArrayUtils.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/util/ContainerHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/util/ContainerHelpers.cs -------------------------------------------------------------------------------- /library/source/org/telegram/tl/util/SparseArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimix3/tgsharp/HEAD/library/source/org/telegram/tl/util/SparseArray.cs --------------------------------------------------------------------------------