Files
NemesisAI/TelegramBot/Agent.cs
2024-12-26 19:51:17 +01:00

11 lines
381 B
C#

using Telegram.Bot;
namespace TelegramBot;
public class Agent(Actor actor, long telegramId, string name, string username, TelegramBotClient bot) {
public Actor Actor { get; } = actor;
public long TelegramId { get; } = telegramId;
public string Username { get; } = username;
public string Name { get; } = name;
public TelegramBotClient Bot { get; } = bot;
}