16 lines
318 B
C#
16 lines
318 B
C#
using MyHN.Application;
|
|
|
|
namespace Website.Models
|
|
{
|
|
public class CommentFormViewModel
|
|
{
|
|
public LinkDto Link { get; set; }
|
|
public CommentLinkCommand Comment { get; set; }
|
|
|
|
public CommentFormViewModel(LinkDto link, CommentLinkCommand comment)
|
|
{
|
|
Link = link;
|
|
Comment = comment;
|
|
}
|
|
}
|
|
} |