10 lines
316 B
C#
10 lines
316 B
C#
using FictionArchive.Service.Shared.Services.EventBus;
|
|
|
|
namespace FictionArchive.Service.FileService.Models.IntegrationEvents;
|
|
|
|
public class FileUploadRequestCreatedEvent : IIntegrationEvent
|
|
{
|
|
public Guid RequestId { get; set; }
|
|
public string FilePath { get; set; }
|
|
public byte[] FileData { get; set; }
|
|
} |