15 lines
309 B
C#
15 lines
309 B
C#
using HackerNet.Application;
|
|
|
|
namespace HackerNet.Web.Models;
|
|
|
|
public class LinkDetailViewModel
|
|
{
|
|
public LinkHomePage Link { get; set; }
|
|
public LinkComment[] Comments { get; set; }
|
|
|
|
public LinkDetailViewModel(LinkHomePage link, LinkComment[] comments)
|
|
{
|
|
Link = link;
|
|
Comments = comments;
|
|
}
|
|
} |