myhn/Application/GetLinkById/GetLinkByIdQuery.cs
2021-01-08 16:26:19 +01:00

15 lines
218 B
C#

using System;
using MediatR;
namespace MyHN.Application
{
public class GetLinkByIdQuery : IRequest<LinkDto>
{
public Guid Id { get; set; }
public GetLinkByIdQuery(Guid id)
{
Id = id;
}
}
}