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