Merge pull request #34 from alex6dj/development

Call Serialize implicitly when assigning to a string
This commit is contained in:
Florian Zevedei 2022-12-03 01:27:44 +01:00 committed by GitHub
commit 0d390f30fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,6 +77,7 @@ namespace TelegramBotBase.Form
return null;
}
public static implicit operator string(CallbackData callbackData) => callbackData.Serialize();
}
}