2023-01-18 12:56:24 +00:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
using System.Net;
|
|
|
|
|
|
|
|
namespace ImageBoardServerApp.Data;
|
|
|
|
|
|
|
|
public class UserData
|
|
|
|
{
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
[DatabaseGenerated((DatabaseGeneratedOption.Identity))]
|
|
|
|
[Key]
|
|
|
|
public int UserID { get; set; }
|
2023-02-01 20:49:02 +00:00
|
|
|
|
2023-01-18 12:56:24 +00:00
|
|
|
[Required]
|
2023-02-01 20:49:02 +00:00
|
|
|
public long TimeBanned { get; set; }
|
2023-01-18 12:56:24 +00:00
|
|
|
|
|
|
|
[Required]
|
|
|
|
public long lastActionTimeStamp { get; set; }
|
|
|
|
|
|
|
|
public List<PostData> Posts { get; set; }
|
|
|
|
|
|
|
|
public List<CommentData> Comments { get; set; }
|
2023-02-01 20:49:02 +00:00
|
|
|
|
|
|
|
[Required]
|
|
|
|
public string Email { 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; }
|
|
|
|
|
|
|
|
public List<ReportData> RecivedReports { get; set; }
|
2023-01-18 12:56:24 +00:00
|
|
|
}
|