myhn/Application/CommentLink/CommentLinkCommand.cs
2021-01-08 16:26:19 +01:00

25 lines
397 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using MediatR;
namespace MyHN.Application
{
public class CommentLinkCommand : IRequest<Guid>
{
[Required]
public Guid LinkId { get; set; }
[Required]
public string Content { get; set; }
public CommentLinkCommand()
{
}
public CommentLinkCommand(Guid linkId)
{
LinkId = linkId;
}
}
}