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