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