namespace FileFlows.Telegram; /// /// A Telegram Plugin /// public class Plugin : FileFlows.Plugin.IPlugin { /// /// Gets the UID for this plugin /// public Guid Uid => new Guid("a610837d-c6d6-438b-8470-33a407ea7c98"); /// /// Gets the name of this plugin /// public string Name => "Telegram"; /// /// Gets the minimum version of FileFlows required for this plugin /// public string MinimumVersion => "1.0.4.2019"; /// public string Icon => "fab fa-telegram-plane"; /// /// Initializes this plugin /// public void Init() { } }