feat: 新增文件整理大师服务及校验与对话接口

This commit is contained in:
ccnetcore
2025-09-07 01:34:25 +08:00
parent ece89ebad0
commit 85f2e1b579
2 changed files with 110 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
namespace Yi.Framework.AiHub.Application.Contracts.Dtos.FileMaster;
public class VerifyNextInput
{
/// <summary>
/// 文件数
/// </summary>
public int FileCount { get; set; }
/// <summary>
/// 文件夹数
/// </summary>
public int DirectoryCount { get; set; }
}