blob: 0ea8a4c6380273d692424f72fcd0e2380d45adef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Http;
namespace MediaBrowser.Model.Lyrics;
/// <summary>
/// Upload lyric dto.
/// </summary>
public class UploadLyricDto
{
/// <summary>
/// Gets or sets the lyrics file.
/// </summary>
[Required]
public IFormFile Lyrics { get; set; } = null!;
}
|