This commit is contained in:
2026-05-09 19:14:32 +08:00
7 changed files with 116 additions and 59 deletions
@@ -0,0 +1,18 @@
using FluentValidation;
namespace FileService.WebApi.Controllers.FileTask
{
public class FileTaskInitRequest
{
public Guid ConversationId { get; set; }
public string FileName { get; set; }
public long FileSize { get; set; }
public string ContentType { get; set; }
public string CheckSum { get; set; }
}
public class FileTaskInitRequestValidator: AbstractValidator<FileTaskInitRequest>
{
}
}