diff --git a/CHANGES/1194.feature.rst b/CHANGES/1194.feature.rst new file mode 100644 index 00000000..282ba131 --- /dev/null +++ b/CHANGES/1194.feature.rst @@ -0,0 +1,12 @@ +Added Currency enum. +You can use it like this: + +.. code-block:: python + + from aiogram import Bot + from aiogram.enum import Currency + await Bot.send_invoice( + ..., + currency=Currency.USD, + ... + )