using Application; namespace Website.Models { public class ShowLinkViewModel { public LinkDTO Link { get; } public CommentDTO[] Comments { get; } public ShowLinkViewModel(LinkDTO link, CommentDTO[] comments) { Link = link; Comments = comments; } } }