hn-20-2/Application/PublishCommentCommand.cs

14 lines
238 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace Application
{
public class PublishCommentCommand
{
[Required]
public Guid LinkId { get; set; }
[Required]
public string Content { get; set; }
}
}