Call Serialize implicitly when assigning to a string

This commit is contained in:
Alexei Agüero Alba 2022-12-01 09:45:43 -05:00
parent ec65d609ba
commit c86ce7a9e0
No known key found for this signature in database
GPG Key ID: 255511EEC9BD8D03

View File

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