平安校园
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

BaseFileInput.cs 278 B

8 个月前
1234567891011121314151617181920212223
  1. 
  2. //
  3. namespace SafeCampus.Core;
  4. /// <summary>
  5. /// 文件上传输入参数
  6. /// </summary>
  7. public class BaseFileInput
  8. {
  9. /// <summary>
  10. /// 文件
  11. /// </summary>
  12. [Required(ErrorMessage = "文件不能为空")]
  13. public IFormFile? File { get; set; }
  14. }