using IM_API.Dtos; namespace IM_API.Domain.Events { public record UploadMergeEvent : DomainEvent { public override string EventType => "IM.FILES_UPLOAD_MERGE"; public Guid TaskId { get; init; } public List Parts { get; init; } public int ChunckCount { get; set; } public string ObjectName { get; set; } } }