| 123456789101112131415161718192021222324252627282930 |
- using Domain.Entities.Forum.Boards;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace Domain.Entities.Forum.Posts
- {
- public class PostMedia
- {
- [ForeignKey(nameof(BoardID))]
- public Board Board { get; set; } = null!;
- [ForeignKey(nameof(PostID))]
- public Post Post { get; set; } = null!;
- [Key]
- public int ID { get; set; }
- public int BoardID { get; set; }
- public int PostID { get; set; }
- public string Url { get; set; } = default!;
- public bool IsDisabled { get; set; } = false;
- public DateTime? DisabledAt { get; set; }
- public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
- }
- }
|