chatr/ChatrServer/Chatr/Bot.cs

26 lines
493 B
C#

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;}
}
}