Lieb-Website/SharedClasses/SharedModels/ApiSignUp.cs
Sarah Faey b8feed971c reworked the commandHandler
added Slash Commands
2022-11-15 19:00:56 +01:00

13 lines
No EOL
349 B
C#

namespace SharedClasses.SharedModels
{
public class ApiSignUp
{
public int raidId {get; set;}
public ulong userId {get; set;}
public int gw2AccountId {get; set;}
public int roleId {get; set;}
public ulong signedUpByUserId {get; set;}
public string userName {get; set;} = string.Empty;
}
}