myhn/Application/GetCommentById/GetCommentByIdQuery.cs
2021-01-15 10:10:24 +01:00

17 lines
287 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using MediatR;
namespace MyHN.Application
{
public class GetCommentByIdQuery : IRequest<CommentDto>
{
[Required]
public Guid Id { get; set; }
public GetCommentByIdQuery(Guid id)
{
Id = id;
}
}
}