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