17 lines
275 B
C#
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;
|
|
}
|
|
}
|
|
} |