Files
Foxel/Models/Request/Picture/UploadPictureRequest.cs
ShiYu c2a9d07772 feat(upload): remove image format conversion options #6
- Remove image format conversion and quality settings from the upload dialog
- Update backend to use default format and quality settings
- Add system configuration options for default image format and quality
2025-05-24 11:41:06 +08:00

19 lines
560 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; }
}