bulletboards/ImageBoardServerApp/Data/UserData.cs

44 lines
1.1 KiB
C#
Raw Normal View History

2023-01-18 12:56:24 +00:00
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ImageBoardServerApp.Data;
public class UserData
{
[Required]
[DatabaseGenerated((DatabaseGeneratedOption.Identity))]
[Key]
public int UserID { get; set; }
[Required] public long TimeBanned { get; set; }
[Required] public string BanReason { get; set; }
[Required] public long lastActionTimeStamp { get; set; }
2023-01-18 12:56:24 +00:00
public List<PostData> Posts { get; set; }
2023-01-18 12:56:24 +00:00
public List<CommentData> Comments { get; set; }
[Required] public string Email { get; set; }
[Required] public string ProposedEmail { get; set; }
[Required] public string Password { get; set; }
[Required] public string Role { get; set; }
2023-02-11 14:47:39 +00:00
public List<ReportData> SubmittedReports { get; set; }
2023-02-11 14:47:39 +00:00
public List<ReportData> RecivedReports { get; set; }
public string LastUsedName { get; set; }
public bool ConfirmedEmail { get; set; }
public string ConfirmEmailToken { get; set; }
public string ResetPasswordToken { get; set; }
public long ResetPasswordExpiresAt { get; set; }
2023-01-18 12:56:24 +00:00
}