using MyHN.Application; namespace Website.Models { public class ShowLinkViewModel { public LinkDto Link { get; set; } public CommentDto[] Comments { get; set; } public ShowLinkViewModel(LinkDto link, CommentDto[] comments) { Link = link; Comments = comments; } } }