Files
Foxel/Models/Request/Picture/UploadPictureRequest.cs

30 lines
939 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.ComponentModel.DataAnnotations;
using Foxel.Models.DataBase;
using Foxel.Models.Enums;
using Foxel.Services.Attributes;
namespace Foxel.Models.Request.Picture;
public record UploadPictureRequest
{
[Required(ErrorMessage = "文件不能为空")]
public IFormFile File { get; set; } = null!;
[Range(0, 2, ErrorMessage = "权限类型必须是0公开、1私有或2仅关注者")]
public int? Permission { get; set; } = 0;
public int? AlbumId { get; set; }
public StorageType? StorageType { get; set; }
/// <summary>
/// 目标图片格式,默认为保持原格式
/// </summary>
public ImageFormat ConvertToFormat { get; set; } = ImageFormat.Original;
/// <summary>
/// 图片质量仅对JPEG和WebP有效1-100
/// </summary>
[Range(1, 100, ErrorMessage = "图片质量必须在1-100之间")]
public int Quality { get; set; } = 95;
}