This commit is contained in:
john 2025-05-11 23:43:38 +02:00
parent 1ecaf64dea
commit cb9d5e332e
11 changed files with 72 additions and 69 deletions

View file

@ -1,5 +1,6 @@
using Femto.Common.Domain;
using MediatR;
namespace Femto.Modules.Media.Contracts.SaveFile;
public record SaveFileCommand(Stream Data, string ContentType, long? ContentLength) : IRequest<Guid>;
public record SaveFileCommand(Stream Data, string ContentType, long? ContentLength) : ICommand<Guid>;