using System.ComponentModel.DataAnnotations;
using MediaBrowser.Model.Configuration;
namespace Jellyfin.Api.Models.LibraryStructureDto
{
    /// 
    /// Media Path dto.
    /// 
    public class MediaPathDto
    {
        /// 
        /// Gets or sets the name of the library.
        /// 
        [Required]
        public string? Name { get; set; }
        /// 
        /// Gets or sets the path to add.
        /// 
        public string? Path { get; set; }
        /// 
        /// Gets or sets the path info.
        /// 
        public MediaPathInfo? PathInfo { get; set; }
    }
}