16 lines
304 B
C#
16 lines
304 B
C#
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;
|
|
}
|
|
}
|
|
} |