hn-dotnet/Application/GetLink/GetLinkQuery.cs
2020-12-10 11:43:47 +01:00

17 lines
275 B
C#

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