15 lines
352 B
C#
15 lines
352 B
C#
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; }
|
|
}
|
|
}
|