forked from Sarah/Lieb-Website
Moved Models to Shared Project
This commit is contained in:
parent
bae69648d0
commit
7533d5a704
19 changed files with 27 additions and 1 deletions
15
Shared/Models/GuildWars2/Raid/RaidSignUpHistory.cs
Normal file
15
Shared/Models/GuildWars2/Raid/RaidSignUpHistory.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
namespace Lieb.Models.GuildWars2.Raid
|
||||
{
|
||||
public class RaidSignUpHistory
|
||||
{
|
||||
public int RaidSignUpHistoryId { get; set; }
|
||||
|
||||
public string UserName { get; set; } = string.Empty;
|
||||
|
||||
public DateTimeOffset Time { get; set; } = DateTimeOffset.Now;
|
||||
|
||||
public SignUpType SignUpType { get; set; }
|
||||
|
||||
public Raid Raid { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue