9 lines
263 B
C#
9 lines
263 B
C#
namespace FictionArchive.Service.Shared.MassTransit.Contracts.Commands;
|
|
|
|
public record UploadFileCommand : ICommand
|
|
{
|
|
public Guid RequestId { get; init; }
|
|
public required string FilePath { get; init; }
|
|
public required byte[] FileData { get; init; }
|
|
}
|