12 lines
355 B
C#
12 lines
355 B
C#
namespace FictionArchive.Service.Shared.Contracts.Events;
|
|
|
|
public interface IFileUploadRequestCreated
|
|
{
|
|
Guid? ImportId { get; }
|
|
Guid RequestId { get; }
|
|
string FilePath { get; }
|
|
byte[] FileData { get; }
|
|
}
|
|
|
|
public record FileUploadRequestCreated(Guid? ImportId, Guid RequestId, string FilePath, byte[] FileData) : IFileUploadRequestCreated;
|