| 1234567891011 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Api.Forum.PostFile.Download;
- public sealed record Command(
- int PostFileID,
- int? MemberID,
- string? IpAddress,
- string? UserAgent
- ) : ICommand<Result<Response>>;
|