9 lines
327 B
C#
9 lines
327 B
C#
using Events.FilesAPI.Infrastructure.Files;
|
|
using MediatR;
|
|
|
|
namespace Events.FilesAPI.Features.Certificates.Download;
|
|
|
|
public sealed record DownloadCertificateQuery(int RegistrationId) : IRequest<DownloadCertificateResult>;
|
|
|
|
public sealed record DownloadCertificateResult(bool RegistrationFound, GeneratedFileReference? File);
|