平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BaseFileInput.cs 265 B

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