Lieb-Website/Lieb/Models/GuildWars2/Raid/SignUpHistory.cs
2022-02-22 00:28:48 +01:00

15 lines
363 B
C#

namespace Lieb.Models.GuildWars2.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; }
}
}