mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			670 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			670 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.ComponentModel.DataAnnotations;
 | 
						|
using MediaBrowser.Model.Configuration;
 | 
						|
 | 
						|
namespace Jellyfin.Api.Models.LibraryStructureDto
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Media Path dto.
 | 
						|
    /// </summary>
 | 
						|
    public class MediaPathDto
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the name of the library.
 | 
						|
        /// </summary>
 | 
						|
        [Required]
 | 
						|
        public string? Name { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the path to add.
 | 
						|
        /// </summary>
 | 
						|
        public string? Path { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the path info.
 | 
						|
        /// </summary>
 | 
						|
        public MediaPathInfo? PathInfo { get; set; }
 | 
						|
    }
 | 
						|
} |