signing up through the discord bot works now

This commit is contained in:
Sarah Faey 2022-11-07 00:16:49 +01:00
parent e445b2a181
commit 69337e69ae
11 changed files with 327 additions and 42 deletions

View file

@ -36,6 +36,8 @@ namespace SharedClasses.SharedModels
public class Role
{
public int RoleId { get; set; }
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;

View file

@ -7,6 +7,8 @@ namespace SharedClasses.SharedModels
public string Description { get; set; } = String.Empty;
public bool IsSignUpAllowed{ get; set; } = false;
public bool IsSignUpAllowed { get; set; } = false;
public int roleId {get; set;}
}
}