Add UserGroupTag module.

This commit is contained in:
West14
2022-01-03 22:13:44 +02:00
parent 9f108d5021
commit 64a4a1fabb
4 changed files with 122 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
using System;
using Kruzya.TelegramBot.Core;
namespace UserGroupTag
{
public class UserGroupTag : Module
{
public UserGroupTag(Core core) : base(core) { }
}
}