using System.ComponentModel.DataAnnotations;
using MediaBrowser.Model.Configuration;
namespace Jellyfin.Api.Models.LibraryStructureDto
{
    /// 
    /// Update library options dto.
    /// 
    public class UpdateMediaPathRequestDto
    {
        /// 
        /// Gets or sets the library name.
        /// 
        [Required]
        public string Name { get; set; } = null!;
        /// 
        /// Gets or sets library folder path information.
        /// 
        [Required]
        public MediaPathInfo PathInfo { get; set; } = null!;
    }
}