myhn/Application/VoteForComment/VoteForCommentCommand.cs
2021-01-08 16:26:19 +01:00

12 lines
219 B
C#

using System;
using MediatR;
using MyHN.Domain;
namespace MyHN.Application
{
public class VoteForCommentCommand : IRequest
{
public Guid CommentId { get; set; }
public VoteType Direction { get; set; }
}
}