using HackerNet.Application; namespace HackerNet.Web.Models; public class LinkDetailViewModel { public LinkHomePage Link { get; set; } public LinkComment[] Comments { get; set; } public LinkDetailViewModel(LinkHomePage link, LinkComment[] comments) { Link = link; Comments = comments; } }