Merge branch 'master' of https://gitea.nxsir.cn/nanxun/IM_NEW
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user