Files
StopShopping/StopShopping.FileApi/Services/UploadParams.cs
2026-03-30 11:07:30 +08:00

24 lines
477 B
C#

using System.ComponentModel.DataAnnotations;
namespace StopShopping.FileApi.Services;
/// <summary>
/// 上传
/// </summary>
/// <value></value>
public record UploadParams
{
/// <summary>
/// 场景
/// </summary>
/// <value></value>
public UploadScences Scences { get; set; }
/// <summary>
/// 文件
/// </summary>
/// <value></value>
[Required]
[ImageFileValidation(2 * 1024 * 1024)]
public IFormFile? File { get; set; }
}