Command.cs 287 B

1234567891011
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Forum.CommentFile.Download;
  4. public sealed record Command(
  5. Guid CommentFileUUID,
  6. int? MemberID,
  7. string? IpAddress,
  8. string? UserAgent
  9. ) : ICommand<Result<Response>>;