20 lines
425 B
C#
20 lines
425 B
C#
using HN.Application;
|
|
|
|
namespace Website.Models
|
|
{
|
|
public class ShowLinkViewModel
|
|
{
|
|
public LinkDto Link { get; set; }
|
|
|
|
public CommentLinkCommand CommentForm { get; set; }
|
|
public CommentDto[] Comments { get; set; }
|
|
|
|
public ShowLinkViewModel(LinkDto link, CommentLinkCommand commentForm, CommentDto[] comments)
|
|
{
|
|
Link = link;
|
|
CommentForm = commentForm;
|
|
Comments = comments;
|
|
}
|
|
}
|
|
|
|
} |