namespace FictionArchive.Service.Shared.Contracts.Events; public interface IFileUploadRequestCreated { Guid RequestId { get; } string FilePath { get; } byte[] FileData { get; } }