[entertainment] add guess game

This commit is contained in:
Andriy
2023-01-18 02:07:48 +02:00
parent c61d875a6a
commit ec11cf4496
5 changed files with 145 additions and 1 deletions
@@ -0,0 +1,9 @@
using Telegram.Bot.Types;
namespace West.Entertainment.Handler;
public class GuessData
{
public long UserId { get; set; }
public int Number { get; set; }
}