This commit is contained in:
2026-05-09 19:49:53 +08:00
5 changed files with 60 additions and 1 deletions
@@ -0,0 +1,23 @@
using FileService.Domain;
using FileService.Domain.ValueObjects;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FileService.Application.UploadFileTask
{
public class UploadTaskResponse
{
public Guid Id { get; set; }
public Guid UploaderId { get; set; }
public Guid ConversationId { get; set; }
public string FileName { get; set; }
public long FileSize { get; set; }
public string ContentType { get; set; }
public StorageLocation StorageLocation { get; set; }
public string State { get; set; }
public string CheckSum { get; set; }
}
}