namespace FileService.Application.UploadFileTask { /// /// 分片上传进度响应。 /// public class UploadProgressResponse { public string SessionId { get; set; } public string TaskId { get; set; } public long FileSize { get; set; } public int TotalPartCount { get; set; } public int CompletedPartCount { get; set; } public long UploadedBytes { get; set; } public int ProgressPercent { get; set; } } }