// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Model.Lyrics; using global::System.ComponentModel.DataAnnotations; using Microsoft.AspNetCore.Http; /// /// Upload lyric dto. /// public class UploadLyricDto { /// /// Gets or sets the lyrics file. /// [Required] public IFormFile Lyrics { get; set; } = null!; }