mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-14 02:39:40 +08:00
13 lines
307 B
C#
13 lines
307 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Foxel.Models.DataBase;
|
|
|
|
namespace Foxel.Models.Request.Picture;
|
|
|
|
public class UploadPictureRequest
|
|
{
|
|
[Required] public IFormFile File { get; set; } = null!;
|
|
|
|
public int? Permission { get; set; } = 1;
|
|
|
|
public int? AlbumId { get; set; } = null;
|
|
} |