12 lines
213 B
C#
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; }
|
|
}
|
|
} |