Added Models
This commit is contained in:
parent
dbf1be4c5d
commit
245c6da6c6
12 changed files with 246 additions and 1 deletions
15
Lieb/Models/Raid/SignUpHistory.cs
Normal file
15
Lieb/Models/Raid/SignUpHistory.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
namespace Lieb.Models.Raid
|
||||
{
|
||||
public class SignUpHistory
|
||||
{
|
||||
public int SignUpHistoryId { 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