Files
predavanja/Events-WebApi/Events.FilesAPI/Features/Certificates/Download/DownloadCertificateQuery.cs
2026-05-10 23:39:55 +02:00

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);