Added Discord Bot
This commit is contained in:
parent
e7a0c9ae68
commit
e445b2a181
48 changed files with 1255 additions and 157 deletions
28
Lieb/Models/GuildWars2/Raid/RaidSignUp.cs
Normal file
28
Lieb/Models/GuildWars2/Raid/RaidSignUp.cs
Normal file
|
@ -0,0 +1,28 @@
|
|||
namespace Lieb.Models.GuildWars2.Raid
|
||||
{
|
||||
public enum SignUpType
|
||||
{
|
||||
SignedUp = 0,
|
||||
Maybe = 1,
|
||||
Backup = 2,
|
||||
Flex = 3,
|
||||
SignedOff = 4
|
||||
}
|
||||
|
||||
public class RaidSignUp
|
||||
{
|
||||
public int RaidSignUpId { get; set; }
|
||||
|
||||
public int RaidId { get; set; }
|
||||
public ulong LiebUserId { get; set; }
|
||||
public int GuildWars2AccountId { get; set; }
|
||||
public int RaidRoleId { get; set; }
|
||||
|
||||
public SignUpType SignUpType { get; set; }
|
||||
|
||||
public Raid Raid { get; set; }
|
||||
public LiebUser LiebUser { get; set; }
|
||||
public GuildWars2Account GuildWars2Account { get; set; }
|
||||
public RaidRole RaidRole { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue