9 lines
192 B
C#
9 lines
192 B
C#
namespace FictionArchive.Service.Shared.Contracts.Events;
|
|
|
|
public interface IFileUploadRequestCreated
|
|
{
|
|
Guid RequestId { get; }
|
|
string FilePath { get; }
|
|
byte[] FileData { get; }
|
|
}
|