using System.Collections.Generic;
using Microsoft.AspNetCore.Http;

namespace Dpz.Core.Public.ViewModel.Request;

public class MusicUploadActionRequest
{
    public IFormFile? Music { get; set; }

    public UploadMusicAsync? UploadMusic { get; set; }

    public UploadCoverAsync? UploadCover { get; set; }

    /// <summary>
    /// 封面
    /// </summary>
    public IFormFile? Cover { get; set; }

    /// <summary>
    ///
    /// </summary>
    public IFormFile? Lyric { get; set; }

    public UploadLyricAsync? UploadLyric { get; set; }

    public string? From { get; set; } = "用户上传";

    public List<string> Group { get; set; } = [];
}
评论加载中...