🚧 RSS as a module

This commit is contained in:
2020-03-02 00:00:52 +04:00
parent e86049f4fd
commit eac0da5016
16 changed files with 1185 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
using Telegram.Bot.Types;
using Telegram.Bot.Types.Enums;
namespace Kruzya.TelegramBot.RichSiteSummary
{
public struct UserMessage
{
public ChatId ChatId;
public string Text;
public ParseMode ParseMode;
public bool DisableWebPagePreview;
}
}