2023-01-18 12:56:24 +00:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
|
namespace ImageBoardServerApp.Data;
|
|
|
|
|
|
|
|
public class PostData
|
|
|
|
{
|
|
|
|
[Required]
|
|
|
|
[DatabaseGenerated((DatabaseGeneratedOption.Identity))]
|
|
|
|
[Key]
|
|
|
|
public int PostID { get; set; }
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
public int UserID { get; set; }
|
|
|
|
|
|
|
|
//[ForeignKey("UserID")]
|
|
|
|
public UserData User { get; set; }
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
public int ImageID { get; set; }
|
|
|
|
|
|
|
|
//[ForeignKey("ImageID")]
|
|
|
|
public ImageData Image { get; set; }
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
public string Username { get; set; }
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
public string Content { get; set; }
|
|
|
|
|
2023-01-25 16:26:21 +00:00
|
|
|
public int Interactions { get; set; }
|
2023-01-18 12:56:24 +00:00
|
|
|
|
|
|
|
[Required]
|
|
|
|
public long CreatedAt { get; set; }
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
public string Board { get; set; }
|
|
|
|
|
|
|
|
public List<CommentData> Comments { get; set; }
|
2023-02-11 14:47:39 +00:00
|
|
|
|
|
|
|
public ReportData? Report { get; set; }
|
2023-01-18 12:56:24 +00:00
|
|
|
}
|