added support for External users
fixed potential errors
This commit is contained in:
parent
a47bc3207d
commit
62dc3d1efa
10 changed files with 257 additions and 130 deletions
|
@ -4,12 +4,25 @@
|
|||
{
|
||||
public int RaidSignUpHistoryId { get; set; }
|
||||
|
||||
public string UserName { get; set; } = string.Empty;
|
||||
public int RaidId { get; set; }
|
||||
|
||||
public ulong UserId {get; set;}
|
||||
public int GuildWars2AccountId { get; set; }
|
||||
|
||||
//public ulong SignedUpByUserId {get; set;}
|
||||
|
||||
public string UserName {get; set;} = string.Empty;
|
||||
|
||||
public DateTimeOffset Time { get; set; } = DateTimeOffset.Now;
|
||||
|
||||
public SignUpType SignUpType { get; set; }
|
||||
|
||||
public LiebUser User {get; set;}
|
||||
|
||||
//public LiebUser SignedUpByUser {get; set;}
|
||||
|
||||
public Raid Raid { get; set; }
|
||||
|
||||
public GuildWars2Account GuildWars2Account { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue