15 lines
277 B
C#
15 lines
277 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using MediatR;
|
|
|
|
namespace HN.Application
|
|
{
|
|
public sealed class CommentLinkCommand : IRequest<Guid>
|
|
{
|
|
[Required]
|
|
public Guid LinkId { get; set; }
|
|
|
|
[Required]
|
|
public string Content { get; set; }
|
|
}
|
|
} |