add:
更新
This commit is contained in:
@@ -16,6 +16,7 @@ namespace IM_API.Domain.Events
|
||||
public DateTimeOffset MessageCreated { get; set; }
|
||||
public string StreamKey { get; set; }
|
||||
public Guid ClientMsgId { get; set; }
|
||||
public string BaseUrl { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
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<UploadPartDto> Parts { get; init; }
|
||||
public int ChunckCount { get; set; }
|
||||
public string ObjectName { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user