myhn/Apps/Website/Models/CommentFormViewModel.cs
2021-01-08 16:26:19 +01:00

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;
}
}
}