© 2026 Hedgehog Software, LLC
class Post { public string Content { get; set; } public string AuthorId { get; set; } public User Author { get; set; } // Should I use it? }
class User { public string Name { get; set; } public ICollection<Post> Posts { get; set; } // Should I use it? }