added needed rights for slash commands

added functions for account select in the bot
This commit is contained in:
Sarah Faey 2022-11-29 00:04:22 +01:00
parent 62bacb5ad7
commit dc2563e16c
11 changed files with 876 additions and 13 deletions

View file

@ -0,0 +1,9 @@
namespace SharedClasses.SharedModels
{
public class ApiGuildWars2Account
{
public int GuildWars2AccountId { get; set; }
public string AccountName { get; set; } = string.Empty;
}
}