网站首页 网站源码
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Http;
namespace Dpz.Core.WebApi.Models
{
/// <summary>
/// 图像上传
/// </summary>
public class PictureCreateDto
{
/// <summary>
/// 上传的图片
/// </summary>
[Required]
public IFormFile Image { get; set; }
/// <summary>
/// 标签
/// </summary>
public List<string> Tags { get; set; }
/// <summary>
/// 描述
/// </summary>
public string Description { get; set; }
}
}