diff --git a/DAL/Domain/Post.cs b/DAL/Domain/Post.cs index 8988174..cacdb79 100644 --- a/DAL/Domain/Post.cs +++ b/DAL/Domain/Post.cs @@ -12,5 +12,8 @@ namespace DAL.Domain public DateTime CreationTime { get; set; } public string Author { get; set; } + public int ForumId { get; set; } + public Foorum Foorum { get; set; } + } }