myhn/Application/VoteForLink/VoteForLinkCommand.cs
2021-01-08 16:26:19 +01:00

12 lines
213 B
C#

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