using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Dtos.FileDto { /// /// 文件 Dto /// public class FileDto { } /// /// 文件删除 Dto /// public class FileDelDto { /// /// 文件路径(含文件名称) /// public string? PathUrl { get; set; } } }