chatr/ChatrServer/Chatr/Bot.cs

26 lines
493 B
C#
Raw Permalink Normal View History

2022-08-24 11:34:56 +00:00
namespace Tesses.Chatr.Server
{
public class Bot
{
public Bot()
{
BotUserName="";
ApiKey="";
BotName="";
BotDescription="";
Permissions=new Permissions();
}
public long Id {get;set;}
public long UserId {get;set;}
public string BotUserName {get;set;}
public string BotName {get;set;}
public string ApiKey {get;set;}
public string BotDescription {get;set;}
public Permissions Permissions {get;set;}
}
}