using HN.Application; namespace Website.Models { public class ShowLinkViewModel { public LinkDto Link { get; set; } public CommentLinkCommand CommentForm { get; set; } public ShowLinkViewModel(LinkDto link, CommentLinkCommand commentForm) { Link = link; CommentForm = commentForm; } } }